diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 274cde03..e5ee55e9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,7 +76,8 @@ jobs: TEST_FAKE_ACTIVATION_HEIGHTS: with: command: test - args: --verbose --all -- with_fake_activation_heights + # Note: this only runs the zebra-state crate tests, because re-running all the test binaries is slow on Windows + args: --verbose --package zebra-state --lib -- with_fake_activation_heights # Explicitly run any tests that are usually #[ignored] @@ -86,7 +87,8 @@ jobs: uses: actions-rs/cargo@v1.0.3 with: command: test - args: --verbose --manifest-path zebrad/Cargo.toml sync_large_checkpoints_ -- --ignored + # Note: this only runs the zebrad acceptance tests, because re-running all the test binaries is slow on Windows + args: --verbose --package zebrad --test acceptance sync_large_checkpoints_ -- --ignored build-chain-no-features: name: Build (+${{ matrix.rust }}) zebra-chain w/o features on ubuntu-latest