Skip to content

Commit c765ec6

Browse files
committed
remove os specific test
1 parent 119d3fe commit c765ec6

File tree

1 file changed

+3
-26
lines changed

1 file changed

+3
-26
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,7 @@ jobs:
3838
cargo build --manifest-path=roles/Cargo.toml
3939
cargo build --manifest-path=utils/Cargo.toml
4040
41-
- name: Roles Integration Tests (MAC)
42-
if: matrix.os == 'macos-latest'
43-
run: |
44-
cargo test --manifest-path=roles/Cargo.toml --verbose --test '*' -- --nocapture
45-
46-
- name: Roles Integration Tests (LINUX)
47-
if: matrix.os == 'ubuntu-latest'
41+
- name: Roles Integration Tests
4842
run: |
4943
cargo test --manifest-path=roles/Cargo.toml --verbose --test '*' -- --nocapture
5044
@@ -80,32 +74,15 @@ jobs:
8074
fi
8175
working-directory: utils/buffer/fuzz
8276

83-
84-
- name: Test (MAC)
85-
if: matrix.os == 'macos-latest'
86-
run: |
87-
cargo test --manifest-path=benches/Cargo.toml
88-
cargo test --manifest-path=common/Cargo.toml
89-
cargo test --manifest-path=protocols/Cargo.toml
90-
cargo test --manifest-path=roles/Cargo.toml
91-
cargo test --manifest-path=utils/Cargo.toml
92-
93-
- name: Test (LINUX)
94-
if: matrix.os == 'ubuntu-latest'
77+
- name: Test
9578
run: |
9679
cargo test --manifest-path=benches/Cargo.toml
9780
cargo test --manifest-path=common/Cargo.toml
9881
cargo test --manifest-path=protocols/Cargo.toml
9982
cargo test --manifest-path=roles/Cargo.toml
10083
cargo test --manifest-path=utils/Cargo.toml
10184
102-
- name: Property based testing (MAC)
103-
if: matrix.os == 'macos-latest'
104-
run: |
105-
cargo test --manifest-path=protocols/Cargo.toml --features prop_test
106-
107-
- name: Property based testing (LINUX)
108-
if: matrix.os == 'ubuntu-latest'
85+
- name: Property based testing
10986
run: |
11087
cargo test --manifest-path=protocols/Cargo.toml --features prop_test
11188

0 commit comments

Comments
 (0)