We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fb9e9a commit 7015168Copy full SHA for 7015168
.github/workflows/testing.yml
@@ -62,6 +62,17 @@ jobs:
62
- name: "Install PyMARE"
63
shell: bash {0}
64
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
74
+ uses: mxschmitt/action-tmate@v3
75
+ timeout-minutes: 45
76
- name: "Run tests"
77
78
run: python -m pytest --pyargs pymare --cov=pymare
0 commit comments