mirror of
https://github.com/corundum/corundum.git
synced 2025-01-30 08:32:52 +08:00
30 lines
376 B
INI
30 lines
376 B
INI
|
# tox configuration
|
||
|
[tox]
|
||
|
envlist = py39
|
||
|
skipsdist = True
|
||
|
|
||
|
[gh-actions]
|
||
|
python =
|
||
|
3.9: py39
|
||
|
|
||
|
[testenv]
|
||
|
deps =
|
||
|
pytest
|
||
|
pytest-xdist
|
||
|
pytest-split
|
||
|
cocotb
|
||
|
cocotb-test
|
||
|
cocotbext-axi
|
||
|
jinja2
|
||
|
|
||
|
commands =
|
||
|
pytest -n auto {posargs}
|
||
|
|
||
|
# pytest configuration
|
||
|
[pytest]
|
||
|
testpaths =
|
||
|
tb
|
||
|
addopts =
|
||
|
--ignore-glob=tb/test_*.py
|
||
|
--import-mode importlib
|