Skip to content

Commit 15f63ff

Browse files
committed
Updated the CI scripts, GitHub actions and Travis CI.
1 parent 32daca5 commit 15f63ff

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
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:
@@ -37,8 +37,8 @@ jobs:
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

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ language: python
33
sudo: false
44

55
python:
6-
- 3.7
7-
- 3.8
86
- 3.9
7+
- 3.10
8+
- 3.11
99

1010
addons:
1111
apt:
@@ -14,7 +14,7 @@ addons:
1414
- verilator
1515

1616
install:
17-
- pip install pytest pytest-pythonpath pyverilog numpy
17+
- pip install pytest pytest-pythonpath pytest-xdist pyverilog numpy
1818

1919
script:
20-
- python -m pytest tests examples
20+
- python -m pytest -n auto tests examples

0 commit comments

Comments
 (0)