tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.path: disable racy test
Martin Weinelt
4 years ago
86d2ccf4
8aebdc9f
+6
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
path
default.nix
+6
pkgs/development/python-modules/path/default.nix
reviewed
···
32
32
pytestCheckHook
33
33
];
34
34
35
35
+
disabledTests = [
36
36
+
# creates a file, checks when it was last accessed/modified
37
37
+
# AssertionError: assert 1650036414.0 == 1650036414.960688
38
38
+
"test_utime"
39
39
+
];
40
40
+
35
41
pythonImportsCheck = [
36
42
"path"
37
43
];