Skip to content

Allow missing citation fields when importing publications (#472) #223

Allow missing citation fields when importing publications (#472)

Allow missing citation fields when importing publications (#472) #223

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.11'
architecture: x64
- name: Install
run: |
python -m pip install --upgrade pip pipenv
pipenv install --dev
- name: Test
run: |
pipenv run coverage run --source=solenoid -m pytest -vv
pipenv run coverage report -m
- name: Coveralls
run: pipenv run coverage lcov -o ./coverage/lcov.info