Skip to content

Commit

Permalink
topydo: Don't fail build on tests
Browse files Browse the repository at this point in the history
Signed-off-by: Pamplemousse <xav.maso@gmail.com>
  • Loading branch information
Pamplemousse committed Sep 16, 2020
1 parent d09738d commit c603f62
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pkgs/applications/misc/topydo/default.nix
Expand Up @@ -22,7 +22,14 @@ buildPythonApplication rec {
watchdog
];

checkInputs = [ mock freezegun coverage green pylint ];
checkInputs = [ mock freezegun pylint ];

# Skip test that has been reported multiple times upstream without result:
# bram85/topydo#271, bram85/topydo#274.
checkPhase = ''
substituteInPlace test/test_revert_command.py --replace 'test_revert_ls' 'dont_test_revert_ls'
python -m unittest discover
'';

LC_ALL="en_US.UTF-8";

Expand Down

0 comments on commit c603f62

Please sign in to comment.