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:
Martin Weinelt
2021-04-12 16:38:51 +02:00
parent 5436f0546e
commit 8811817e3e

View File

@@ -26,7 +26,7 @@ buildPythonPackage rec {
checkInputs = [ pytestCheckHook ];
disabledTestFiles = [
disabledTestPaths = [
# Exclude tests that require oslotest
"tests/test_jsonpath_rw_ext.py"
];