diff options
-rw-r--r-- | .github/workflows/pythonpackage.yml | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 115610f3..bf712b2d 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.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
\ No newline at end of file + make -C doc html |