Skip to content

Replace OID with Django authentication system #150

Replace OID with Django authentication system

Replace OID with Django authentication system #150

Workflow file for this run

name: Tests
on: push
jobs:
test:
name: Run tests
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
DJANGO_SECRET_KEY: ${{ secrets.DJANGO_SECRET_KEY }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: '3.9'
architecture: x64
- name: Install
run: |
python -m pip install --upgrade pip pipenv
pipenv install --dev
- name: Test
run: pipenv run pytest --cov=solenoid
- name: Coveralls
run: pipenv run coveralls