File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1919 runs-on : ubuntu-latest
2020 strategy :
2121 matrix :
22- python-version : [3.7 , 3.8 , 3.9 ]
22+ python-version : [3.9 , 3.10 , 3.11 ]
2323
2424 # Steps represent a sequence of tasks that will be executed as part of the job
2525 steps :
3737 - name : Install dependencies
3838 run : |
3939 python -m pip install --upgrade pip
40- pip install pytest pytest-pythonpath pyverilog numpy
40+ pip install pytest pytest-pythonpath pytest-xdist pyverilog numpy
4141 # Run pytest
4242 - name : Test with pytest
4343 run : |
44- python -m pytest tests examples
44+ python -m pytest -n auto tests examples
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ language: python
33sudo : false
44
55python :
6- - 3.7
7- - 3.8
86 - 3.9
7+ - 3.10
8+ - 3.11
99
1010addons :
1111 apt :
@@ -14,7 +14,7 @@ addons:
1414 - verilator
1515
1616install :
17- - pip install pytest pytest-pythonpath pyverilog numpy
17+ - pip install pytest pytest-pythonpath pytest-xdist pyverilog numpy
1818
1919script :
20- - python -m pytest tests examples
20+ - python -m pytest -n auto tests examples
You can’t perform that action at this time.
0 commit comments