python3Packages.jsonpath-ng: fix build
The package was still using `disabledTestFiles` which should have been migrated to `disabledTestPaths`, which led to reinclusion of a test file that requires a dependency (oslotest), which we have not packaged yet.
This commit is contained in:
parent
5436f0546e
commit
8811817e3e
|
@ -26,7 +26,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
checkInputs = [ pytestCheckHook ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
disabledTestFiles = [
|
disabledTestPaths = [
|
||||||
# Exclude tests that require oslotest
|
# Exclude tests that require oslotest
|
||||||
"tests/test_jsonpath_rw_ext.py"
|
"tests/test_jsonpath_rw_ext.py"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue