summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-04-11 11:55:12 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-04-11 11:56:45 +0800
commitf344c8839a1ac7e4b849077906beb20d69cd11ca (patch)
treea5a5d5f4025d760e7868535fabef6cdeaff56354 /.github
parent7f404a50e95dd38012d33ee8041462b7659d79a2 (diff)
downloadgitpython-f344c8839a1ac7e4b849077906beb20d69cd11ca.tar.gz
Remove code-coverage from requirements - codecov wants way too many permissions…
…and I don't really see the benefit given the state of this project
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pythonpackage.yml13
1 files changed, 1 insertions, 12 deletions
diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml
index 253b0da6..b52cb74b 100644
--- a/.github/workflows/pythonpackage.yml
+++ b/.github/workflows/pythonpackage.yml
@@ -52,19 +52,8 @@ jobs:
set -x
pip install nose
nosetests -v --with-coverage
- - name: Coverage
- run: |
- pip install codecov
- ulimit -n 128
- ulimit -n
- coverage run --omit="git/test/*" -m unittest --buffer
- coverage report
- name: Documentation
run: |
set -x
pip install -r doc/requirements.txt
- make -C doc html
- - name: Codecov upload
- run: |
- codecov
-
+ make -C doc html \ No newline at end of file