python310Packages.splinter: disable by design not working test, remove six dependency
This commit is contained in:
parent
15f74ff79e
commit
4104ea1e7a
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user