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
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
7 changed files with 11 additions and 11 deletions

View file

@ -611,7 +611,7 @@ Using the example above, the analagous pytestCheckHook usage would be:
"update"
];
disabledTestFiles = [
disabledTestPaths = [
"tests/test_failing.py"
];
```