summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-04-11 10:48:38 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-04-11 10:48:38 +0800
commit49f13ef2411cee164e31883e247df5376d415d55 (patch)
treeb4cfeeb61b188c463e720631d80cea2465e66891 /.github
parent6a30b2430e25d615c14dafc547caff7da9dd5403 (diff)
downloadgitpython-49f13ef2411cee164e31883e247df5376d415d55.tar.gz
Debugging for all github action scripts
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pythonpackage.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml
index 997b9294..6cb21a31 100644
--- a/.github/workflows/pythonpackage.yml
+++ b/.github/workflows/pythonpackage.yml
@@ -27,6 +27,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies and prepare tests
run: |
+ set -x
python -m pip install --upgrade pip
python --version; git --version
git submodule update --init --recursive
@@ -42,6 +43,7 @@ jobs:
cat git/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
@@ -54,9 +56,11 @@ jobs:
coverage report
- name: Documentation
run: |
+ set -x
pip install -r doc/requirements.txt
make -C doc html
- name: Test with pytest
run: |
+ set -x
pip install pytest
pytest