fishPlugins.pure: re-enable check phase

authored by

pacien and committed by
Anderson Torres
2dc5c6ef 015752db

+4 -12
+4 -12
pkgs/shells/fish/plugins/pure.nix
··· 1 - { lib, buildFishPlugin, fetchFromGitHub, git, fishtape }: 1 + { lib, buildFishPlugin, fetchFromGitHub, git, fishtape_3 }: 2 2 3 3 buildFishPlugin rec { 4 4 pname = "pure"; ··· 11 11 hash = "sha256-O8rC2uCuM3xUQPRap7XqyyAvO77hP+sqNM4mEQ7pZkw="; 12 12 }; 13 13 14 - # The tests aren't passing either on the project's CI. 15 - # The release notes of the program for v3.5.0 say: 16 - # > Tests are going crazy at the moment, should be fixed once fishtape 3.0 17 - # > is released, and we do the switch. 18 - # This is tracked in https://github.com/pure-fish/pure/issues/272 19 - # and https://github.com/pure-fish/pure/pull/275. 20 - doCheck = false; 21 - 22 14 nativeCheckInputs = [ git ]; 23 - checkPlugins = [ fishtape ]; 15 + checkPlugins = [ fishtape_3 ]; 24 16 checkPhase = '' 25 - # https://github.com/rafaelrinaldi/pure/issues/264 26 - rm tests/_pure_string_width.test.fish 17 + rm tests/pure_tools_installer.test.fish 18 + rm tests/_pure_uninstall.test.fish 27 19 28 20 fishtape tests/*.test.fish 29 21 '';