File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 17
17
strategy :
18
18
matrix :
19
19
python-version :
20
- - pypy-2.7
21
- - pypy-3 .11
20
+ - ' 3.11 '
21
+ - ' pypy3 .11'
22
22
runs-on : ubuntu-latest
23
23
defaults :
24
24
run :
@@ -38,11 +38,16 @@ jobs:
38
38
- name : Install dependencies
39
39
run : |
40
40
python -m pip install --upgrade pip
41
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
41
+ pip install -r requirements.txt
42
42
43
43
- name : Lint with pylint
44
44
run : pylint ./day*/
45
45
if : ${{ !contains(matrix.python-version, '2.' )}}
46
46
47
47
- name : Test with pytest
48
+ run : pytest -n auto
49
+ if : ${{ !contains(matrix.python-version, 'pypy' )}}
50
+
51
+ - name : Test with pytest (slow)
48
52
run : pytest -n auto --slow
53
+ if : ${{ contains(matrix.python-version, 'pypy' )}}
You can’t perform that action at this time.
0 commit comments