summary refs log tree commit diff
path: root/doc/languages-frameworks/python.section.md
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-02-14 23:54:55 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-02-15 00:34:35 +0100
commitd6d63aef7d7fcb8df2611717fee6311f75fc63e3 (patch)
treef9409ae14116d3ef95a0335cb6833d1f1ebdd9ff /doc/languages-frameworks/python.section.md
parent056f697397f0971aac7f3e022f9b90dc80d194e9 (diff)
downloadnixpkgs-d6d63aef7d7fcb8df2611717fee6311f75fc63e3.tar
nixpkgs-d6d63aef7d7fcb8df2611717fee6311f75fc63e3.tar.gz
nixpkgs-d6d63aef7d7fcb8df2611717fee6311f75fc63e3.tar.bz2
nixpkgs-d6d63aef7d7fcb8df2611717fee6311f75fc63e3.tar.lz
nixpkgs-d6d63aef7d7fcb8df2611717fee6311f75fc63e3.tar.xz
nixpkgs-d6d63aef7d7fcb8df2611717fee6311f75fc63e3.tar.zst
nixpkgs-d6d63aef7d7fcb8df2611717fee6311f75fc63e3.zip
pytestCheckHook: add support for disabling arbitrary paths
Renames `disabledTestFiles` to the more genereric `disabledTestPaths` to
reflect that change.
Diffstat (limited to 'doc/languages-frameworks/python.section.md')
-rw-r--r--doc/languages-frameworks/python.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md
index 71193ed0cc0..f36f5cf0cbb 100644
--- a/doc/languages-frameworks/python.section.md
+++ b/doc/languages-frameworks/python.section.md
@@ -611,7 +611,7 @@ Using the example above, the analagous pytestCheckHook usage would be:
     "update"
   ];
 
-  disabledTestFiles = [
+  disabledTestPaths = [
     "tests/test_failing.py"
   ];
 ```