python3Packages.stumpy: limit default test suite to core tests
Full test suite is very CPU intensive
This commit is contained in:
parent
1c14120c30
commit
96df984a7e
1 changed files with 6 additions and 0 deletions
|
@ -34,6 +34,12 @@ buildPythonPackage rec {
|
|||
pytestCheckHook
|
||||
];
|
||||
|
||||
pytestFlagsArray = [
|
||||
# whole testsuite is very CPU intensive, only run core tests
|
||||
# TODO: move entire test suite to passthru.tests
|
||||
"tests/test_core.py"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A powerful and scalable library that can be used for a variety of time series data mining tasks";
|
||||
homepage = "https://github.com/TDAmeritrade/stumpy";
|
||||
|
|
Loading…
Reference in a new issue