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 1717 strategy :
1818 matrix :
1919 python-version :
20- - pypy-2.7
21- - pypy-3 .11
20+ - ' 3.11 '
21+ - ' pypy3 .11'
2222 runs-on : ubuntu-latest
2323 defaults :
2424 run :
@@ -38,11 +38,16 @@ jobs:
3838 - name : Install dependencies
3939 run : |
4040 python -m pip install --upgrade pip
41- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
41+ pip install -r requirements.txt
4242
4343 - name : Lint with pylint
4444 run : pylint ./day*/
4545 if : ${{ !contains(matrix.python-version, '2.' )}}
4646
4747 - name : Test with pytest
48+ run : pytest -n auto
49+ if : ${{ !contains(matrix.python-version, 'pypy' )}}
50+
51+ - name : Test with pytest (slow)
4852 run : pytest -n auto --slow
53+ if : ${{ contains(matrix.python-version, 'pypy' )}}
You can’t perform that action at this time.
0 commit comments