about summary refs log tree commit diff
path: root/pkgs/development/python-modules/typesystem
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 /pkgs/development/python-modules/typesystem
parent056f697397f0971aac7f3e022f9b90dc80d194e9 (diff)
pytestCheckHook: add support for disabling arbitrary paths
Renames `disabledTestFiles` to the more genereric `disabledTestPaths` to
reflect that change.
Diffstat (limited to 'pkgs/development/python-modules/typesystem')
-rw-r--r--pkgs/development/python-modules/typesystem/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/typesystem/default.nix b/pkgs/development/python-modules/typesystem/default.nix
index e93fd83656f89..c278680404ba0 100644
--- a/pkgs/development/python-modules/typesystem/default.nix
+++ b/pkgs/development/python-modules/typesystem/default.nix
@@ -35,7 +35,7 @@ buildPythonPackage rec {
     # the default string formatting of regular expression flags which breaks test assertion
     "test_to_json_schema_complex_regular_expression"
   ];
-  disabledTestFiles = [
+  disabledTestPaths = [
     # for some reason jinja2 not picking up forms directory (1% of tests)
     "tests/test_forms.py"
   ];