Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

patch/poetry deps #88

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Disable fail-fast, run pip list
  • Loading branch information
RobertRosca committed Jul 21, 2020
commit def80e808bc751c810ad75eb7fad55878f535030
4 changes: 3 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.6.7, 3.7, 3.8]
env:
Expand All @@ -37,7 +38,8 @@ jobs:
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest -v --cov=oscovida
pip list
python -m pytest -v --cov=oscovida
- name: Test pelican
run: |
cd tools && jupyter-nbconvert --execute generate-individiual-plots.ipynb
Expand Down