Skip to content

Commit

Permalink
Don't set -x for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
acairncross authored and kolloch committed Oct 11, 2023
1 parent 74d7bea commit 3f2281d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion crate2nix/Cargo.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2461,7 +2461,7 @@ rec {
inherit testCrateFlags;
buildInputs = testInputs;
} ''
set -ex
set -e
export RUST_BACKTRACE=1
Expand Down
2 changes: 1 addition & 1 deletion crate2nix/templates/nix/crate2nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ rec {
inherit testCrateFlags;
buildInputs = testInputs;
} ''
set -ex
set -e
export RUST_BACKTRACE=1
Expand Down
2 changes: 1 addition & 1 deletion sample_projects/bin_with_git_submodule_dep/Cargo.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1476,7 +1476,7 @@ rec {
inherit testCrateFlags;
buildInputs = testInputs;
} ''
set -ex
set -e
export RUST_BACKTRACE=1
Expand Down
2 changes: 1 addition & 1 deletion sample_projects/codegen/Cargo.nix
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ rec {
inherit testCrateFlags;
buildInputs = testInputs;
} ''
set -ex
set -e
export RUST_BACKTRACE=1
Expand Down
2 changes: 1 addition & 1 deletion sample_projects/sub_dir_crates/Cargo.nix
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ rec {
inherit testCrateFlags;
buildInputs = testInputs;
} ''
set -ex
set -e
export RUST_BACKTRACE=1
Expand Down

0 comments on commit 3f2281d

Please sign in to comment.