Skip to content

Commit 8d7be6e

Browse files
committed
git-branchless: disable tests for now
The previous commit is kept as a record of the currently failing tests, for future reference.
1 parent 56698b5 commit 8d7be6e

File tree

1 file changed

+3
-24
lines changed
  • pkgs/applications/version-management/git-branchless

1 file changed

+3
-24
lines changed

pkgs/applications/version-management/git-branchless/default.nix

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -52,35 +52,14 @@ rustPlatform.buildRustPackage rec {
5252
# Note that upstream has disabled CI tests for git>=2.46
5353
# See: https://github.com/arxanas/git-branchless/issues/1416
5454
# https://github.com/arxanas/git-branchless/pull/1417
55+
# To be re-enabled once arxanas/git-branchless#1416 is resolved
56+
doCheck = false;
57+
5558
checkFlags = [
5659
# FIXME: these tests deadlock when run in the Nix sandbox
5760
"--skip=test_switch_pty"
5861
"--skip=test_next_ambiguous_interactive"
5962
"--skip=test_switch_auto_switch_interactive"
60-
# harmless failures, also appear in upstream CI
61-
# see e.g. https://github.com/user-attachments/files/17016948/git-branchless-job-logs.txt
62-
"--skip=test_amend_undo" # git-branchless#1345
63-
# harmless, extra: "branchless: processing 1 update: ref HEAD"
64-
"--skip=test_symbolic_transaction_ref"
65-
"--skip=test_move_branch_on_merge_conflict_resolution"
66-
"--skip=test_move_branches_after_move"
67-
"--skip=test_move_delete_checked_out_branch"
68-
"--skip=test_move_no_reapply_squashed_commits"
69-
"--skip=test_move_orphaned_root"
70-
"--skip=test_restore_snapshot_basic"
71-
"--skip=test_restore_snapshot_delete_file_only_in_index"
72-
"--skip=test_restore_snapshot_deleted_files"
73-
"--skip=test_sync_basic"
74-
"--skip=test_sync_no_delete_main_branch"
75-
# probably harmless, without the extra "Check out from ... to ..." step
76-
"--skip=test_undo_doesnt_make_working_dir_dirty"
77-
"--skip=test_undo_move_refs"
78-
"--skip=test_undo_noninteractive"
79-
# probably harmless, different EventCursor::event_id
80-
"--skip=test_undo_hide"
81-
];
82-
cargoTestFlags = [
83-
"--no-fail-fast" # make post-mortem easier
8463
];
8564

8665
meta = with lib; {

0 commit comments

Comments
 (0)