File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 72
72
- name : Install dependencies
73
73
run : |
74
74
pip install -U pip
75
- if [[ "${{ matrix.python-version }}" == "3.13" || "${{ matrix.python-version }}" == "3.13t" ]]; then
75
+ if [[ "${{ matrix.python-version }}" == "3.13" ]]; then
76
76
pip install --pre cffi setuptools
77
77
pip install --no-build-isolation hatch
78
+ elif [[ "${{ matrix.python-version }}" == "3.13t" ]]; then
79
+ # Hatch can't be installed on 3.13t, use pytest directly.
80
+ pip install .
81
+ pip install -r requirements/test.txt
78
82
else
79
83
pip install hatch
80
84
fi
84
88
mongodb-version : 6.0
85
89
- name : Run tests
86
90
run : |
87
- hatch run test:test
91
+ if [[ "${{ matrix.python-version }}" == "3.13t" ]]; then
92
+ pytest -v --durations=5 --maxfail=10
93
+ else
94
+ hatch run test:test
95
+ fi
88
96
89
97
doctest :
90
98
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments