tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python311Packages.coqpit: disable failing tests
Martin Weinelt
2 years ago
d0955a83
7907b061
+10
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
coqpit
default.nix
+10
pkgs/development/python-modules/coqpit/default.nix
reviewed
···
1
1
{ lib
2
2
, buildPythonPackage
3
3
, fetchFromGitHub
4
4
+
, pythonAtLeast
4
5
, pytestCheckHook
5
6
}:
6
7
···
23
24
pythonImportsCheck = [
24
25
"coqpit"
25
26
"coqpit.coqpit"
27
27
+
];
28
28
+
29
29
+
# https://github.com/coqui-ai/coqpit/issues/40
30
30
+
disabledTests = lib.optionals (pythonAtLeast "3.11")[
31
31
+
"test_init_argparse_list_and_nested"
32
32
+
];
33
33
+
34
34
+
disabledTestPaths = lib.optionals (pythonAtLeast "3.11")[
35
35
+
"tests/test_nested_configs.py"
26
36
];
27
37
28
38
meta = with lib; {