File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -57,11 +57,13 @@ ignore = ['F403', 'F405']
5757source = " scm"
5858
5959[tool .pdm .scripts ]
60- test-cov.cmd = " pytest --cov=chipflow_lib --cov-report=html"
6160test.cmd = " pytest"
61+ test-cov.cmd = " pytest --cov=chipflow_lib --cov-report=term"
62+ test-cov-html.cmd = " pytest --cov=chipflow_lib --cov-report=html"
6263test-docs.cmd = " sphinx-build -b doctest docs/ docs/_build"
6364lint.cmd = " ruff check"
6465docs.cmd = " sphinx-build docs/ docs/_build/ -W --keep-going"
66+ test-silicon.cmd = " pytest tests/test_silicon_platform.py tests/test_silicon_platform_additional.py tests/test_silicon_platform_amaranth.py tests/test_silicon_platform_build.py tests/test_silicon_platform_port.py --cov=chipflow_lib.platforms.silicon --cov-report=term"
6567
6668
6769[dependency-groups ]
@@ -78,3 +80,8 @@ doc = [
7880 " sphinx-autoapi>=3.5.0" ,
7981 " sphinx>=7.3.7" ,
8082]
83+
84+ [tool .pytest .ini_options ]
85+ testpaths = [
86+ " tests" ,
87+ ]
You can’t perform that action at this time.
0 commit comments