diff options
| author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-07-19 23:25:48 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-19 23:25:48 +0800 |
| commit | acbd6bad9ded9a1d59e80e71d334d64b0244f5cd (patch) | |
| tree | c7e162bb6962be9f33b9f7edb84da1b7511fe0d7 /.github/workflows/pythonpackage.yml | |
| parent | 06c219929a427737b43c5dfd5359019f2c110d41 (diff) | |
| parent | f587b21a98e7c26986db87d991af42cafcfebb07 (diff) | |
| download | gitpython-acbd6bad9ded9a1d59e80e71d334d64b0244f5cd.tar.gz | |
Merge pull request #1294 from gitpython-developers/tidy-tools
Tidy tools
Diffstat (limited to '.github/workflows/pythonpackage.yml')
| -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 |
