Skip to content

Commit 49f13ef

Browse files
committed
Debugging for all github action scripts
1 parent 6a30b24 commit 49f13ef

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

‎.github/workflows/pythonpackage.yml

+4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
python-version: ${{ matrix.python-version }}
2828
- name: Install dependencies and prepare tests
2929
run: |
30+
set -x
3031
python -m pip install --upgrade pip
3132
python --version; git --version
3233
git submodule update --init --recursive
@@ -42,6 +43,7 @@ jobs:
4243
cat git/test/fixtures/.gitconfig >> ~/.gitconfig
4344
- name: Lint with flake8
4445
run: |
46+
set -x
4547
pip install flake8
4648
# stop the build if there are Python syntax errors or undefined names
4749
flake8 --ignore=W293,E265,E266,W503,W504,E731 --count --show-source --statistics
@@ -54,9 +56,11 @@ jobs:
5456
coverage report
5557
- name: Documentation
5658
run: |
59+
set -x
5760
pip install -r doc/requirements.txt
5861
make -C doc html
5962
- name: Test with pytest
6063
run: |
64+
set -x
6165
pip install pytest
6266
pytest

0 commit comments

Comments
 (0)