Skip to content

Commit 773ded1

Browse files
committed
Try to work around CI build failure
1 parent 7e48d22 commit 773ded1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
toolchain: ${{ matrix.rust }}
2222
- name: Run unit tests
2323
run: rustc --version && cargo --version && cargo test --features online_tests
24-
env:
25-
CLICOLOR: "0"
2624
- name: Run script tests
2725
if: runner.os != 'Windows'
2826
run: |

tests/tests/script.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ fn test_script_test() {
9696
fn test_script_test_extra_args_for_cargo() {
9797
let out = rust_script!("--test", "tests/data/script-test-extra-args.rs", "--help",).unwrap();
9898
assert!(out.success());
99-
assert!(out.stdout.contains("Usage: cargo test "));
99+
assert!(out
100+
.stdout
101+
.contains("Execute all unit and integration tests"));
100102
}
101103

102104
#[test]

0 commit comments

Comments
 (0)