pytestCheckHook: add support for disabling arbitrary paths

Renames `disabledTestFiles` to the more genereric `disabledTestPaths` to
reflect that change.
This commit is contained in:
Martin Weinelt
2021-02-14 23:54:55 +01:00
parent 056f697397
commit d6d63aef7d
7 changed files with 11 additions and 11 deletions

View File

@@ -50,7 +50,7 @@ buildPythonPackage rec {
typing-extensions
];
disabledTestFiles = [ "tests/test_graphql.py" ];
disabledTestPaths = [ "tests/test_graphql.py" ];
# https://github.com/encode/starlette/issues/1131
disabledTests = [ "test_debug_html" ];
pythonImportsCheck = [ "starlette" ];