diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a1dc1ca..ba579ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,6 +35,7 @@ jobs: name: unit test env: CARGO_INCREMENTAL: 0 + NEXTEST_PROFILE: "CI" runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -58,6 +59,7 @@ jobs: case: ["integration-test-txn", "integration-test-raw"] env: CARGO_INCREMENTAL: 0 + NEXTEST_PROFILE: "CI" TIKV_VERSION: v8.5.1 runs-on: ubuntu-latest steps: diff --git a/Makefile b/Makefile index 06b6961..ef3fd39 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ export MULTI_REGION ?= 1 ALL_FEATURES := integration-tests -NEXTEST_ARGS := --config-file $(shell pwd)/config/nextest.toml -P ci +NEXTEST_ARGS := --config-file $(shell pwd)/config/nextest.toml INTEGRATION_TEST_ARGS := --features "integration-tests" --test-threads 1