Skip to content

Commit

Permalink
ci: use cargo test --test integration instead of config
Browse files Browse the repository at this point in the history
Signed-off-by: 170210 <[email protected]>
  • Loading branch information
170210 committed Mar 7, 2024
1 parent c46efb7 commit 996eb42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/contract_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
#
- name: Integration tests (singlepass backend)
working-directory: ${{env.working-directory}}
run: cargo integration-test --locked --no-default-features
run: cargo test --test integration --locked --no-default-features
- name: Documentation tests
working-directory: ${{env.working-directory}}
run: cargo test --doc --locked
Expand Down
4 changes: 2 additions & 2 deletions contracts/voting-with-uuid/.cargo/config
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
wasm = "build --release --target wasm32-unknown-unknown"
wasm-debug = "build --target wasm32-unknown-unknown"
unit-test = "test --lib"
integration-test-for-debug = "test --test integration -- --color always --nocapture"
integration-test = "test --test integration"
integration-test = "test --test integration -- --color always --nocapture"
integration-test-for-ci = "test --test integration"
schema = "run --example schema"

0 comments on commit 996eb42

Please sign in to comment.