This is an automated email from the ASF dual-hosted git repository.
xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
The following commit(s) were added to refs/heads/main by this push:
new abca9b8fd ci: Use cargo test instead of carge nextest (#3505)
abca9b8fd is described below
commit abca9b8fd8922f67e89f5b1e4367043eb8777477
Author: Xuanwo <[email protected]>
AuthorDate: Tue Nov 7 17:50:49 2023 +0800
ci: Use cargo test instead of carge nextest (#3505)
Signed-off-by: Xuanwo <[email protected]>
---
.github/actions/behavior_test_core/action.yaml | 2 +-
.github/workflows/behavior_test_core.yml | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/.github/actions/behavior_test_core/action.yaml
b/.github/actions/behavior_test_core/action.yaml
index 1bdc27c82..1ba9adf68 100644
--- a/.github/actions/behavior_test_core/action.yaml
+++ b/.github/actions/behavior_test_core/action.yaml
@@ -41,7 +41,7 @@ runs:
- name: Run Test Core
shell: bash
working-directory: core
- run: cargo nextest run behavior --features tests,${{
inputs.feature }}
+ run: cargo test behavior --features tests,${{ inputs.feature }}
env:
OPENDAL_TEST: ${{ inputs.service }}
EOF
diff --git a/.github/workflows/behavior_test_core.yml
b/.github/workflows/behavior_test_core.yml
index 4f7fdff62..1d578838e 100644
--- a/.github/workflows/behavior_test_core.yml
+++ b/.github/workflows/behavior_test_core.yml
@@ -39,7 +39,6 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup
with:
- need-nextest: true
need-protoc: true
need-rocksdb: true
github-token: ${{ secrets.GITHUB_TOKEN }}