tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
blocksat-cli: use disabledTestPaths
Pavol Rusnak
4 years ago
397efc26
2203c418
+6
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
blocksat-cli
default.nix
+6
-6
pkgs/development/python-modules/blocksat-cli/default.nix
···
32
33
checkInputs = [ pytestCheckHook ];
34
35
-
pytestFlagsArray = [
36
# disable tests which require being connected to the satellite
37
-
"--ignore=blocksatcli/test_satip.py"
38
-
"--ignore=blocksatcli/api/test_listen.py"
39
-
"--ignore=blocksatcli/api/test_msg.py"
40
-
"--ignore=blocksatcli/api/test_net.py"
41
# disable tests which require being online
42
-
"--ignore=blocksatcli/api/test_order.py"
43
];
44
45
pythonImportsCheck = [ "blocksatcli" ];
···
32
33
checkInputs = [ pytestCheckHook ];
34
35
+
disabledTestPaths = [
36
# disable tests which require being connected to the satellite
37
+
"blocksatcli/test_satip.py"
38
+
"blocksatcli/api/test_listen.py"
39
+
"blocksatcli/api/test_msg.py"
40
+
"blocksatcli/api/test_net.py"
41
# disable tests which require being online
42
+
"blocksatcli/api/test_order.py"
43
];
44
45
pythonImportsCheck = [ "blocksatcli" ];