lol

python3Packages.xgboost: limit tests to just basic tests

authored by

Jonathan Ringer and committed by
Martin Weinelt
e810e4e0 2ea8e712

+2 -1
+2 -1
pkgs/development/python-modules/xgboost/default.nix
··· 48 ln -s ${xgboost}/bin/xgboost ../xgboost 49 ''; 50 51 - pytestFlagsArray = ["../tests/python"]; 52 disabledTestPaths = [ 53 # Requires internet access: https://github.com/dmlc/xgboost/blob/03cd087da180b7dff21bd8ef34997bf747016025/tests/python/test_ranking.py#L81 54 "../tests/python/test_ranking.py"
··· 48 ln -s ${xgboost}/bin/xgboost ../xgboost 49 ''; 50 51 + # tests are extremely cpu intensive, only run basic tests to ensure package is working 52 + pytestFlagsArray = ["../tests/python/test_basic.py"]; 53 disabledTestPaths = [ 54 # Requires internet access: https://github.com/dmlc/xgboost/blob/03cd087da180b7dff21bd8ef34997bf747016025/tests/python/test_ranking.py#L81 55 "../tests/python/test_ranking.py"