File tree Expand file tree Collapse file tree 1 file changed +8
-17
lines changed
Expand file tree Collapse file tree 1 file changed +8
-17
lines changed Original file line number Diff line number Diff line change 3232 python-version : " 3.11"
3333 - os : ubuntu-latest
3434 python-version : " 3.12"
35- - os : windows-latest
36- python-version : " 3.10"
37- - os : windows-latest
38- python-version : " 3.11"
39- - os : windows-latest
40- python-version : " 3.12"
4135 steps :
4236 - name : Checkout
4337 uses : actions/checkout@v4
@@ -52,25 +46,22 @@ jobs:
5246 python -m pip install hatch
5347
5448 - name : Run the tests
55- # timeout-minutes: 15
49+ timeout-minutes : 15
5650 if : ${{ !startsWith( matrix.python-version, 'pypy' ) && !startsWith(matrix.os, 'windows') }}
5751 run : |
58- PYTHONTRACEMALLOC=20 hatch run cov:test --cov-fail-under 50 || PYTHONTRACEMALLOC=20 hatch run test:test --lf
52+ hatch run cov:test --cov-fail-under 50 || hatch run test:test --lf
5953
6054 - name : Run the tests on pypy
61- # timeout-minutes: 15
55+ timeout-minutes : 15
6256 if : ${{ startsWith( matrix.python-version, 'pypy' ) }}
6357 run : |
64- PYTHONTRACEMALLOC=20 hatch run test:nowarn || PYTHONTRACEMALLOC=20 hatch run test:nowarn --lf
58+ hatch run test:nowarn || hatch run test:nowarn --lf
6559
6660 - name : Run the tests on Windows
67- # timeout-minutes: 15
61+ timeout-minutes : 15
6862 if : ${{ startsWith(matrix.os, 'windows') }}
6963 run : |
70- hatch run test:pip list
71- hatch run test:python --version
72- # hatch run test:python -m pip install git+https://github.com/ipython/ipython@ea303f8330fddbc786e1fcbf31e881feb7a606b3
73- PYTHONTRACEMALLOC=20 hatch run test:pytest -v
64+ hatch run cov:nowarn || hatch run test:nowarn --lf
7465
7566 - name : Check Launcher
7667 run : |
@@ -152,8 +143,8 @@ jobs:
152143 pip freeze
153144
154145 - name : Run the tests
155- # timeout-minutes: 15
156- run : PYTHONTRACEMALLOC=20 pytest -W default -vv || PYTHONTRACEMALLOC=20 pytest --vv -W default --lf
146+ timeout-minutes : 15
147+ run : pytest -W default -vv || pytest --vv -W default --lf
157148
158149 test_miniumum_versions :
159150 name : Test Minimum Versions
You can’t perform that action at this time.
0 commit comments