-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Restake evm asset E2E Tests (#865)
- Loading branch information
Showing
19 changed files
with
2,042 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,7 +60,41 @@ jobs: | |
run: sudo apt-get install protobuf-compiler | ||
|
||
- name: Run test suite | ||
run: cargo nextest run --profile ci | ||
run: cargo nextest run --workspace --exclude tangle --profile ci | ||
|
||
e2e: | ||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
concurrency: | ||
group: e2e-${{ github.ref }} | ||
cancel-in-progress: true | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: ./.github/actions/free-disk-space | ||
- name: Install toolchain | ||
id: toolchain | ||
uses: actions-rs/toolchain@master | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
target: wasm32-unknown-unknown | ||
|
||
- name: Install cargo-nextest | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: nextest | ||
|
||
- name: Rust Cache | ||
uses: Swatinem/[email protected] | ||
|
||
- name: Install Protobuf | ||
run: sudo apt-get install protobuf-compiler | ||
|
||
- name: Run End to End test suite | ||
run: cargo nextest run -rp tangle -F manual-seal,testnet,txpool --profile ci --nocapture | ||
|
||
clippy: | ||
concurrency: | ||
|
Oops, something went wrong.