Skip to content

Commit 83fb1da

Browse files
committed
back to use test in IT
Signed-off-by: ben1009 <[email protected]>
1 parent 3719c0e commit 83fb1da

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ concurrency:
77
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
88
cancel-in-progress: true
99

10+
env:
11+
CARGO_TERM_COLOR: always
12+
1013
name: CI
1114

1215
jobs:

Makefile

+3-6
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,9 @@ unit-test: generate
2323
cargo nextest run --all --no-default-features
2424

2525
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
3229

3330
test: unit-test integration-test
3431

0 commit comments

Comments
 (0)