File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ concurrency:
7
7
group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
8
8
cancel-in-progress : true
9
9
10
+ env :
11
+ CARGO_TERM_COLOR : always
12
+
10
13
name : CI
11
14
12
15
jobs :
Original file line number Diff line number Diff line change @@ -23,12 +23,9 @@ unit-test: generate
23
23
cargo nextest run --all --no-default-features
24
24
25
25
integration-test : generate
26
- cargo nextest run txn_ --all ${INTEGRATION_TEST_ARGS}
27
- # -- --nocapture
28
- cargo nextest run raw_ --all ${INTEGRATION_TEST_ARGS}
29
- # -- --nocapture
30
- cargo nextest run misc_ --all ${INTEGRATION_TEST_ARGS}
31
- # -- --nocapture
26
+ cargo test txn_ --all ${INTEGRATION_TEST_ARGS} -- --nocapture
27
+ cargo test raw_ --all ${INTEGRATION_TEST_ARGS} -- --nocapture
28
+ cargo test misc_ --all ${INTEGRATION_TEST_ARGS} -- --nocapture
32
29
33
30
test : unit-test integration-test
34
31
You can’t perform that action at this time.
0 commit comments