pytestCheckHook: add support for disabling arbitrary paths

Renames `disabledTestFiles` to the more genereric `disabledTestPaths` to
reflect that change.
wip/yesman
Martin Weinelt 3 years ago
parent 056f697397
commit d6d63aef7d
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
  1. 2
      doc/languages-frameworks/python.section.md
  2. 10
      pkgs/development/interpreters/python/hooks/pytest-check-hook.sh
  3. 2
      pkgs/development/python-modules/cheroot/default.nix
  4. 2
      pkgs/development/python-modules/slixmpp/default.nix
  5. 2
      pkgs/development/python-modules/starlette/default.nix
  6. 2
      pkgs/development/python-modules/typesystem/default.nix
  7. 2
      pkgs/development/python-modules/virtualenv/default.nix

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

@ -2,7 +2,7 @@
echo "Sourcing pytest-check-hook"
declare -ar disabledTests
declare -ar disabledTestFiles
declare -ar disabledTestPaths
function _concatSep {
local result
@ -37,12 +37,12 @@ function pytestCheckPhase() {
disabledTestsString=$(_pytestComputeDisabledTestsString "${disabledTests[@]}")
args+=" -k \""$disabledTestsString"\""
fi
for file in ${disabledTestFiles[@]}; do
if [ ! -f "$file" ]; then
echo "Disabled test file \"$file\" does not exist. Aborting"
for path in ${disabledTestPaths[@]}; do
if [ ! -e "$path" ]; then
echo "Disabled tests path \"$path\" does not exist. Aborting"
exit 1
fi
args+=" --ignore=\"$file\""
args+=" --ignore=\"$path\""
done
args+=" ${pytestFlagsArray[@]}"
eval "@pythonCheckInterpreter@ $args"

@ -73,7 +73,7 @@ buildPythonPackage rec {
"bind_addr_unix"
];
disabledTestFiles = [
disabledTestPaths = [
# avoid attempting to use 3 packages not available on nixpkgs
# (jaraco.apt, jaraco.context, yg.lockfile)
"cheroot/test/test_wsgi.py"

@ -39,7 +39,7 @@ buildPythonPackage rec {
checkInputs = [ pytestCheckHook ];
# Exclude live tests
disabledTestFiles = [ "tests/live_test.py" ];
disabledTestPaths = [ "tests/live_test.py" ];
pythonImportsCheck = [ "slixmpp" ];

@ -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" ];

@ -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"
];

@ -69,7 +69,7 @@ buildPythonPackage rec {
'';
# Ignore tests which require network access
disabledTestFiles = [
disabledTestPaths = [
"tests/unit/create/test_creator.py"
"tests/unit/seed/embed/test_bootstrap_link_via_app_data.py"
];

Loading…
Cancel
Save