remove test misc

Signed-off-by: Ping Yu <yuping@pingcap.com>
This commit is contained in:
Ping Yu 2025-03-13 23:30:58 +08:00
parent c783b194a8
commit 563842579f
3 changed files with 3 additions and 6 deletions

View File

@ -55,7 +55,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
case: ["integration-test-txn", "integration-test-raw", "integration-test-misc"] case: ["integration-test-txn", "integration-test-raw"]
env: env:
CARGO_INCREMENTAL: 0 CARGO_INCREMENTAL: 0
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@ -1,6 +1,6 @@
export RUSTFLAGS=-Dwarnings 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 PD_ADDRS ?= 127.0.0.1:2379
export MULTI_REGION ?= 1 export MULTI_REGION ?= 1
@ -26,7 +26,7 @@ check: generate
unit-test: generate unit-test: generate
cargo nextest run --all --no-default-features 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 integration-test-txn: generate
$(RUN_INTEGRATION_TEST) txn_ $(RUN_INTEGRATION_TEST) txn_
@ -34,8 +34,6 @@ integration-test-txn: generate
integration-test-raw: generate integration-test-raw: generate
$(RUN_INTEGRATION_TEST) raw_ $(RUN_INTEGRATION_TEST) raw_
integration-test-misc: generate
$(RUN_INTEGRATION_TEST) misc_
test: unit-test integration-test test: unit-test integration-test

View File

@ -5,7 +5,6 @@
//! Test names should begin with one of the following: //! Test names should begin with one of the following:
//! 1. txn_ //! 1. txn_
//! 2. raw_ //! 2. raw_
//! 3. misc_
//! //!
//! We make use of the convention to control the order of tests in CI, to allow //! 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 //! transactional and raw tests to coexist, since transactional requests have