summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-02-18 16:59:22 +0100
committerGitHub <noreply@github.com>2021-02-18 16:59:22 +0100
commit36ef53d3372254cea0beaa1f2da40adcc20731f3 (patch)
treeb3714af80f15ac926644a16019b774c7d877b511 /doc
parent968d7e80c7ffb6ecd970a5dd63d3a2e00f33939b (diff)
parentd6d63aef7d7fcb8df2611717fee6311f75fc63e3 (diff)
downloadnixpkgs-36ef53d3372254cea0beaa1f2da40adcc20731f3.tar
nixpkgs-36ef53d3372254cea0beaa1f2da40adcc20731f3.tar.gz
nixpkgs-36ef53d3372254cea0beaa1f2da40adcc20731f3.tar.bz2
nixpkgs-36ef53d3372254cea0beaa1f2da40adcc20731f3.tar.lz
nixpkgs-36ef53d3372254cea0beaa1f2da40adcc20731f3.tar.xz
nixpkgs-36ef53d3372254cea0beaa1f2da40adcc20731f3.tar.zst
nixpkgs-36ef53d3372254cea0beaa1f2da40adcc20731f3.zip
Merge pull request #113167 from mweinelt/pytestcheckhook-paths
pytestCheckHook: add support for disabling arbitrary paths
Diffstat (limited to 'doc')
-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"
   ];
 ```