mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
python311Packages.glom: disable failing tests on Python 3.11
This commit is contained in:
parent
d7bf4cb902
commit
f1e1feedac
@ -1,12 +1,13 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, boltons
|
||||
, attrs
|
||||
, boltons
|
||||
, buildPythonPackage
|
||||
, face
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
, pyyaml
|
||||
, pythonAtLeast
|
||||
, pythonOlder
|
||||
, pyyaml
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -40,6 +41,9 @@ buildPythonPackage rec {
|
||||
disabledTests = [
|
||||
# Test is outdated (was made for PyYAML 3.x)
|
||||
"test_main_yaml_target"
|
||||
] ++ lib.optionals (pythonAtLeast "3.11") [
|
||||
"test_regular_error_stack"
|
||||
"test_long_target_repr"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
|
Loading…
Reference in New Issue
Block a user