python310Packages.splinter: disable by design not working test, remove six dependency

This commit is contained in:
Sandro Jäckel 2022-06-04 17:23:19 +02:00 committed by Jonathan Ringer
parent 15f74ff79e
commit 4104ea1e7a
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

View File

@ -2,7 +2,6 @@
, buildPythonPackage
, fetchFromGitHub
, selenium
, six
, flask
, pytestCheckHook
}:
@ -20,7 +19,6 @@ buildPythonPackage rec {
propagatedBuildInputs = [
selenium
six
];
checkInputs = [
@ -28,8 +26,14 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# driver is present and fails with a different error during loading
"test_local_driver_not_present"
];
disabledTestPaths = [
"samples"
# TODO: requires optional dependencies which should be defined in passthru.optional-dependencies.$name
"tests/test_djangoclient.py"
"tests/test_flaskclient.py"
"tests/test_popups.py"