summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorStefan Holderbach <sholderbach@users.noreply.github.com>2023-12-23 20:28:07 +0100
committerGitHub <noreply@github.com>2023-12-23 20:28:07 +0100
commitb0b4c3dffd9f84ea18236e8f9055d642de029a1d (patch)
tree8babace382bd519cf1e7e81c6488c126e7ce3a57 /scripts
parentf3de373c59d4ecfd060252ac669e5b0945a81060 (diff)
Check for clean repo after tests (#11409)
Goal: detect problems like adressed by #11407 or missing `Cargo.lock` update early Try to fail when there is a non clear `git status` message
Diffstat (limited to 'scripts')
-rw-r--r--scripts/test_virtualenv.nu1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/test_virtualenv.nu b/scripts/test_virtualenv.nu
index e6628ea53..dec6a8fbd 100644
--- a/scripts/test_virtualenv.nu
+++ b/scripts/test_virtualenv.nu
@@ -53,4 +53,5 @@ def main [] {
let msg = $"OUTPUT:\n($o)\n\nEXPECTED:\n($e)"
error make {msg: $"Output does not match the expected value:\n($msg)"}
}
+ rm script.nu
}