|
38 | 38 | cargo build --manifest-path=roles/Cargo.toml
|
39 | 39 | cargo build --manifest-path=utils/Cargo.toml
|
40 | 40 |
|
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 |
48 | 42 | run: |
|
49 | 43 | cargo test --manifest-path=roles/Cargo.toml --verbose --test '*' -- --nocapture
|
50 | 44 |
|
@@ -80,32 +74,15 @@ jobs:
|
80 | 74 | fi
|
81 | 75 | working-directory: utils/buffer/fuzz
|
82 | 76 |
|
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 |
95 | 78 | run: |
|
96 | 79 | cargo test --manifest-path=benches/Cargo.toml
|
97 | 80 | cargo test --manifest-path=common/Cargo.toml
|
98 | 81 | cargo test --manifest-path=protocols/Cargo.toml
|
99 | 82 | cargo test --manifest-path=roles/Cargo.toml
|
100 | 83 | cargo test --manifest-path=utils/Cargo.toml
|
101 | 84 |
|
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 |
109 | 86 | run: |
|
110 | 87 | cargo test --manifest-path=protocols/Cargo.toml --features prop_test
|
111 | 88 |
|
|
0 commit comments