python3Packages.stumpy: limit default test suite to core tests

Full test suite is very CPU intensive
This commit is contained in:
Jonathan Ringer
2022-03-14 00:29:10 +01:00
committed by Martin Weinelt
parent 1c14120c30
commit 96df984a7e
@@ -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";