Skip to content

Commit a9cd2ca

Browse files
committed
Show PATH on CI
Along with the version and platform information that is already shown. This is to make debugging easier.
1 parent b83ce1b commit a9cd2ca

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Diff for: .github/workflows/cygwin-test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ jobs:
7373
python -c 'import sys; print(sys.platform)'
7474
python -c 'import os; print(os.name)'
7575
python -c 'import git; print(git.compat.is_win)' # NOTE: Deprecated. Use os.name directly.
76+
printenv PATH | tr ':' '\n'
7677
7778
- name: Test with pytest
7879
run: |

Diff for: .github/workflows/pythonpackage.yml

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
python -c 'import sys; print(sys.platform)'
6666
python -c 'import os; print(os.name)'
6767
python -c 'import git; print(git.compat.is_win)' # NOTE: Deprecated. Use os.name directly.
68+
printenv PATH | tr ':' '\n'
6869
6970
- name: Check types with mypy
7071
run: |

0 commit comments

Comments
 (0)