python3Packages.clickclick: fix tests

This commit is contained in:
Jonathan Ringer 2020-06-02 22:41:04 -07:00 committed by Jon
parent 22ef38bdad
commit 74e0cbf32d

View file

@ -14,8 +14,10 @@ buildPythonPackage rec {
checkInputs = [ pytestCheckHook pytestcov ];
propagatedBuildInputs = [ flake8 click pyyaml six ];
disabledTests = lib.optionals isPy36 [
# test_cli asserts on exact quoting style of output
disabledTests = [
"test_cli"
] ++ lib.optionals isPy36 [
"test_choice_default"
];