Skip to content

Commit 2bb7fe7

Browse files
committed
Update CI configuration
Signed-off-by: Alex Forencich <[email protected]>
1 parent 786e971 commit 2bb7fe7

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/regression-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
python-version: [3.9]
12+
python-version: [3.10]
1313
group: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
1414

1515
steps:
16-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v3
1717

1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v2
19+
uses: actions/setup-python@v4
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222

@@ -30,4 +30,4 @@ jobs:
3030
pip install tox tox-gh-actions
3131
3232
- name: Test with tox
33-
run: tox -- --splits 10 --group ${{ matrix.group }}
33+
run: tox -- -n auto --verbose --splits 10 --group ${{ matrix.group }}

tox.ini

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ requires = virtualenv >= 16.1
77

88
[gh-actions]
99
python =
10-
3.9: py3
10+
3.10: py3
1111

1212
[testenv]
1313
deps =
14-
pytest == 7.1.3
15-
pytest-xdist == 2.5.0
14+
pytest == 7.2.1
15+
pytest-xdist == 3.1.0
1616
pytest-split == 0.8.0
17-
cocotb == 1.7.0
17+
cocotb == 1.7.2
1818
cocotb-bus == 0.2.1
19-
cocotb-test == 0.2.2
20-
cocotbext-axi == 0.1.18
19+
cocotb-test == 0.2.4
20+
cocotbext-axi == 0.1.20
2121
jinja2 == 3.1.2
2222

2323
commands =
24-
pytest -n auto {posargs}
24+
pytest {posargs:-n auto --verbose}
2525

2626
# pytest configuration
2727
[pytest]

0 commit comments

Comments
 (0)