summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDominic <yobmod@gmail.com>2021-07-12 22:56:01 +0100
committerGitHub <noreply@github.com>2021-07-12 22:56:01 +0100
commitb66bfbd1bc4eb45312ed44778c4072ae230cf63a (patch)
treee2f00b395e96a1b99c3b6018bff3ca43dac6c4a3 /.github
parent9523033fd1ff499ae3d151b23b851b7e2b64bf75 (diff)
downloadgitpython-b66bfbd1bc4eb45312ed44778c4072ae230cf63a.tar.gz
Update pythonpackage.yml
Remove nose tests
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pythonpackage.yml8
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml
index 53da7614..c9faf0f1 100644
--- a/.github/workflows/pythonpackage.yml
+++ b/.github/workflows/pythonpackage.yml
@@ -42,21 +42,19 @@ jobs:
# and cause subsequent tests to fail
cat test/fixtures/.gitconfig >> ~/.gitconfig
- 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,E731 --count --show-source --statistics
+
- name: Check types with mypy
run: |
set -x
pip install tox
tox -e type
- - name: Test with nose
- run: |
- set -x
- pip install nose
- nosetests -v --with-coverage
+
- name: Documentation
run: |
set -x