File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
- nextest-version = " 0.9.86 "
1
+ nextest-version = " 0.9.89 "
2
2
experimental = [" setup-scripts" ]
3
3
4
4
[profile .default ]
Original file line number Diff line number Diff line change @@ -22,10 +22,8 @@ pub fn set_env_vars() {
22
22
std:: env:: set_var ( "__NEXTEST_DISPLAY_EMPTY_OUTPUTS" , "1" ) ;
23
23
24
24
// Unset NEXTEST_PROFILE because we don't want to let it interfere with the
25
- // tests.
26
- //
27
- // TODO: once cargo-nextest 0.9.89 is out, also check that NEXTEST_PROFILE
28
- // is actually set before unsetting it.
25
+ // tests. But ensure that it's set first.
26
+ std:: env:: var ( "NEXTEST_PROFILE" ) . expect ( "NEXTEST_PROFILE should be set" ) ;
29
27
std:: env:: remove_var ( "NEXTEST_PROFILE" ) ;
30
28
31
29
// Remove OUT_DIR from the environment, as it interferes with tests (some of them expect that
You can’t perform that action at this time.
0 commit comments