summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDominic <yobmod@gmail.com>2021-07-19 14:17:55 +0100
committerGitHub <noreply@github.com>2021-07-19 14:17:55 +0100
commitae75712a18f8209ed12756ceaee6cc549c05da40 (patch)
tree4a65aba89d60fa8a8f01d6e59df5b1432ccdab03 /.github
parent83af8e84767eca95e96f37d7c26d834cedf1286d (diff)
downloadgitpython-ae75712a18f8209ed12756ceaee6cc549c05da40.tar.gz
Update pythonpackage.yml
Rmv unneeded installs and testing flags (will use the flage from the config files)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pythonpackage.yml13
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