Skip to content
Permalink
Browse files
Update pythonpackage.yml
Rmv unneeded installs and testing flags (will use the flage from the config files)
  • Loading branch information
Yobmod committed Jul 19, 2021
1 parent 83af8e8 commit ae75712a18f8209ed12756ceaee6cc549c05da40
Showing with 4 additions and 9 deletions.
  1. +4 −9 .github/workflows/pythonpackage.yml
@@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, "3.10.0-beta.3"]
python-version: [3.6, 3.7, 3.8, 3.9, "3.10.0-beta.4"]

steps:
- uses: actions/checkout@v2
@@ -46,26 +46,21 @@ jobs:
- name: Lint with flake8
run: |
set -x
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 --ignore=W293,E265,E266,W503,W504,E704,E731 --count --show-source --statistics
flake8
- name: Check types with mypy
run: |
set -x
pip install mypy
mypy -p git
- name: Test with pytest
run: |
set -x
pip install -r requirements-dev.txt
pytest --cov --cov-report=term
# pytest settings in tox.ini[pytest]
pytest
continue-on-error: false

- name: Documentation
run: |
set -x
pip install -r doc/requirements.txt
make -C doc html
make -C doc html

0 comments on commit ae75712

Please sign in to comment.