Skip to content

Commit

Permalink
termscp: disable failing darwin tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gepbird committed Nov 15, 2024
1 parent c6452a4 commit dd0d6b3
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions pkgs/by-name/te/termscp/package.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
lib,
stdenvNoCC,
dbus,
fetchFromGitHub,
openssl,
Expand Down Expand Up @@ -42,12 +43,17 @@ rustPlatform.buildRustPackage rec {
doInstallCheck = true;

checkFeatures = [ "isolated-tests" ];
checkFlags = [
# requires networking
"--skip=cli::remote::test::test_should_make_remote_args_from_one_bookmark_and_one_remote_with_local_dir"
"--skip=cli::remote::test::test_should_make_remote_args_from_two_bookmarks_and_local_dir"
"--skip=cli::remote::test::test_should_make_remote_args_from_two_remotes_and_local_dir"
];
checkFlags =
[
# requires networking
"--skip=cli::remote::test::test_should_make_remote_args_from_one_bookmark_and_one_remote_with_local_dir"
"--skip=cli::remote::test::test_should_make_remote_args_from_two_bookmarks_and_local_dir"
"--skip=cli::remote::test::test_should_make_remote_args_from_two_remotes_and_local_dir"
]
++ lib.optionals stdenvNoCC.isDarwin [
"--skip=system::watcher::test::should_poll_file_removed"
"--skip=system::watcher::test::should_poll_file_update"
];

passthru = {
updateScript = nix-update-script { };
Expand Down

0 comments on commit dd0d6b3

Please sign in to comment.