Skip to content

Commit

Permalink
python3Packages.clickclick: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Ringer committed Jun 3, 2020
1 parent 22ef38b commit 74e0cbf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/python-modules/clickclick/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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"
];

Expand Down

0 comments on commit 74e0cbf

Please sign in to comment.