python3Packages.pydmd: only run unit tests
Entire test suite can take 100+ vCPU hours
This commit is contained in:
parent
280bb85b3c
commit
e6ccf2a707
1 changed files with 4 additions and 3 deletions
|
@ -35,9 +35,10 @@ buildPythonPackage rec {
|
|||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
# Those tests take over 1.5 h on hydra. Also, an error and two failures
|
||||
"tests/test_spdmd.py"
|
||||
pytestFlagsArray = [
|
||||
# test suite takes over 100 vCPU hours, just run small subset of it.
|
||||
# TODO: Add a passthru.tests with all tests
|
||||
"tests/test_dmdbase.py"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
|
|
Loading…
Reference in a new issue