Skip to content

Commit e70dbee

Browse files
Copilotlklimek
andcommitted
ci: merge backend-e2e workflow into tests workflow as an additional step
Co-authored-by: lklimek <842586+lklimek@users.noreply.github.com>
1 parent 479ee82 commit e70dbee

2 files changed

Lines changed: 8 additions & 80 deletions

File tree

.github/workflows/backend-e2e.yml

Lines changed: 0 additions & 80 deletions
This file was deleted.

.github/workflows/tests.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
- "**/Cargo.toml"
1111
- "Cargo.lock"
1212
- ".cargo/config.toml"
13+
- "tests/backend-e2e/**"
1314
- ".github/workflows/tests.yml"
1415
pull_request:
1516
types: [opened, synchronize, reopened, ready_for_review]
@@ -18,6 +19,7 @@ on:
1819
- "**/Cargo.toml"
1920
- "Cargo.lock"
2021
- ".cargo/config.toml"
22+
- "tests/backend-e2e/**"
2123
- ".github/workflows/tests.yml"
2224

2325
concurrency:
@@ -78,3 +80,9 @@ jobs:
7880
with:
7981
command: test
8082
args: --doc --all-features --workspace
83+
84+
- name: Run backend E2E tests
85+
if: ${{ secrets.E2E_WALLET_MNEMONIC != '' }}
86+
run: cargo test --test backend-e2e --all-features -- --ignored --nocapture --test-threads=1
87+
env:
88+
E2E_WALLET_MNEMONIC: ${{ secrets.E2E_WALLET_MNEMONIC }}

0 commit comments

Comments
 (0)