diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de8c5b6..7e9beb7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,7 +55,7 @@ jobs: strategy: fail-fast: false matrix: - case: ["integration-test-txn", "integration-test-raw", "integration-test-misc"] + case: ["integration-test-txn", "integration-test-raw"] env: CARGO_INCREMENTAL: 0 runs-on: ubuntu-latest diff --git a/Makefile b/Makefile index a4a2067..9111665 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ export RUSTFLAGS=-Dwarnings -.PHONY: default check unit-test generate integration-tests integration-tests-txn integration-tests-raw integration-tests-misc test doc docker-pd docker-kv docker all +.PHONY: default check unit-test generate integration-tests integration-tests-txn integration-tests-raw test doc docker-pd docker-kv docker all export PD_ADDRS ?= 127.0.0.1:2379 export MULTI_REGION ?= 1 @@ -26,7 +26,7 @@ check: generate unit-test: generate cargo nextest run --all --no-default-features -integration-test: integration-test-txn integration-test-raw integration-test-misc +integration-test: integration-test-txn integration-test-raw integration-test-txn: generate $(RUN_INTEGRATION_TEST) txn_ @@ -34,8 +34,6 @@ integration-test-txn: generate integration-test-raw: generate $(RUN_INTEGRATION_TEST) raw_ -integration-test-misc: generate - $(RUN_INTEGRATION_TEST) misc_ test: unit-test integration-test diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs index 82442c4..3ded31b 100644 --- a/tests/integration_tests.rs +++ b/tests/integration_tests.rs @@ -5,7 +5,6 @@ //! Test names should begin with one of the following: //! 1. txn_ //! 2. raw_ -//! 3. misc_ //! //! We make use of the convention to control the order of tests in CI, to allow //! transactional and raw tests to coexist, since transactional requests have