Skip to content

Commit

Permalink
remove os specific test
Browse files Browse the repository at this point in the history
  • Loading branch information
Shourya742 committed Dec 13, 2024
1 parent 119d3fe commit c765ec6
Showing 1 changed file with 3 additions and 26 deletions.
29 changes: 3 additions & 26 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,7 @@ jobs:
cargo build --manifest-path=roles/Cargo.toml
cargo build --manifest-path=utils/Cargo.toml
- name: Roles Integration Tests (MAC)
if: matrix.os == 'macos-latest'
run: |
cargo test --manifest-path=roles/Cargo.toml --verbose --test '*' -- --nocapture
- name: Roles Integration Tests (LINUX)
if: matrix.os == 'ubuntu-latest'
- name: Roles Integration Tests
run: |
cargo test --manifest-path=roles/Cargo.toml --verbose --test '*' -- --nocapture
Expand Down Expand Up @@ -80,32 +74,15 @@ jobs:
fi
working-directory: utils/buffer/fuzz


- name: Test (MAC)
if: matrix.os == 'macos-latest'
run: |
cargo test --manifest-path=benches/Cargo.toml
cargo test --manifest-path=common/Cargo.toml
cargo test --manifest-path=protocols/Cargo.toml
cargo test --manifest-path=roles/Cargo.toml
cargo test --manifest-path=utils/Cargo.toml
- name: Test (LINUX)
if: matrix.os == 'ubuntu-latest'
- name: Test
run: |
cargo test --manifest-path=benches/Cargo.toml
cargo test --manifest-path=common/Cargo.toml
cargo test --manifest-path=protocols/Cargo.toml
cargo test --manifest-path=roles/Cargo.toml
cargo test --manifest-path=utils/Cargo.toml
- name: Property based testing (MAC)
if: matrix.os == 'macos-latest'
run: |
cargo test --manifest-path=protocols/Cargo.toml --features prop_test
- name: Property based testing (LINUX)
if: matrix.os == 'ubuntu-latest'
- name: Property based testing
run: |
cargo test --manifest-path=protocols/Cargo.toml --features prop_test
Expand Down

0 comments on commit c765ec6

Please sign in to comment.