python310Packages.paste: disable failing test on Python 3.11
This commit is contained in:
parent
2c6cbd0d72
commit
3d9cd7c149
1 changed files with 5 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
, pythonAtLeast
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, setuptools
|
, setuptools
|
||||||
, six
|
, six
|
||||||
|
@ -39,6 +40,9 @@ buildPythonPackage rec {
|
||||||
"test_file_cache"
|
"test_file_cache"
|
||||||
# requires network connection
|
# requires network connection
|
||||||
"test_proxy_to_website"
|
"test_proxy_to_website"
|
||||||
|
] ++ lib.optionals (pythonAtLeast "3.11") [
|
||||||
|
# https://github.com/cdent/paste/issues/72
|
||||||
|
"test_form"
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonNamespaces = [
|
pythonNamespaces = [
|
||||||
|
|
Loading…
Reference in a new issue