Skip to content

Commit

Permalink
fix run only sync test
Browse files Browse the repository at this point in the history
  • Loading branch information
magecnion committed Jan 27, 2025
1 parent 495900a commit a267ef2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Warp Sync
run: |
SKIP_WASM_BUILD=1 cargo test --no-default-features --features warp-sync-test --locked
SKIP_WASM_BUILD=1 cargo test --features sync-test --locked warp
zombie-tests:
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,4 @@ try-runtime = [
"sp-runtime/try-runtime",
]

warp-sync-test = []
sync-test = []
2 changes: 1 addition & 1 deletion node/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ mod command;
mod custom_tx_pool;
mod eth;
mod rpc;
#[cfg(feature = "warp-sync-test")]
#[cfg(feature = "sync-test")]
mod sync_test;
fn main() -> sc_cli::Result<()> {
command::run()
Expand Down

0 comments on commit a267ef2

Please sign in to comment.