Skip to content

Commit 7015168

Browse files
committed
debug python 3.9
1 parent 5fb9e9a commit 7015168

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/testing.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,17 @@ jobs:
6262
- name: "Install PyMARE"
6363
shell: bash {0}
6464
run: pip install -e .[tests,stan]
65+
- name: "Debug info for Python 3.9"
66+
if: ${{ matrix.python-version == '3.9' && matrix.os == 'ubuntu-latest' }}
67+
run: |
68+
python -c "import numpy; print(f'Numpy version: {numpy.__version__}')"
69+
python -c "import sys; print(f'Python path: {sys.path}')"
70+
pip freeze
71+
pip check
72+
- name: Setup tmate session for Python 3.9 debugging
73+
if: ${{ matrix.python-version == '3.9' && matrix.os == 'ubuntu-latest' }}
74+
uses: mxschmitt/action-tmate@v3
75+
timeout-minutes: 45
6576
- name: "Run tests"
6677
shell: bash {0}
6778
run: python -m pytest --pyargs pymare --cov=pymare

0 commit comments

Comments
 (0)