mirror of
https://github.com/corundum/corundum.git
synced 2025-01-16 08:12:53 +08:00
729c3a0458
Signed-off-by: Alex Forencich <alex@alexforencich.com>
37 lines
558 B
INI
37 lines
558 B
INI
# tox configuration
|
|
[tox]
|
|
envlist = py3
|
|
skipsdist = True
|
|
minversion = 3.2.0
|
|
requires = virtualenv >= 16.1
|
|
|
|
[gh-actions]
|
|
python =
|
|
3.9: py3
|
|
|
|
[testenv]
|
|
deps =
|
|
pytest == 6.2.5
|
|
pytest-xdist == 2.4.0
|
|
pytest-split == 0.4.0
|
|
cocotb == 1.6.1
|
|
cocotb-test == 0.2.1
|
|
cocotbext-axi == 0.1.18
|
|
cocotbext-eth == 0.1.18
|
|
cocotbext-pcie == 0.2.6
|
|
scapy == 2.4.5
|
|
|
|
commands =
|
|
pytest -n auto {posargs}
|
|
|
|
# pytest configuration
|
|
[pytest]
|
|
testpaths =
|
|
fpga
|
|
fpga/app
|
|
norecursedirs =
|
|
lib
|
|
app
|
|
addopts =
|
|
--import-mode=importlib
|