Skip to content

Commit 44ebcb3

Browse files
authored
ci: remove the filter excluding quality.cpp from the tests (#674)
This change adds the tests necessary to evaluate the quality of the algorithms. Note: If runtime becomes a concern, it may be worth considering the reintroduction of the filter as a potential optimization.
1 parent 046c2b1 commit 44ebcb3

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/linux.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Run tests
3232
run: |
3333
cd build
34-
./test/run_tests "~[quality]"
34+
./test/run_tests
3535
3636
build-gcc10:
3737
runs-on: ubuntu-latest
@@ -54,7 +54,7 @@ jobs:
5454
- name: Run tests
5555
run: |
5656
cd build
57-
./test/run_tests "~[quality]"
57+
./test/run_tests
5858
5959
build-gcc10-cpp20:
6060
runs-on: ubuntu-latest
@@ -77,7 +77,7 @@ jobs:
7777
- name: Run tests
7878
run: |
7979
cd build
80-
./test/run_tests "~[quality]"
80+
./test/run_tests
8181
8282
build-gcc12:
8383
runs-on: ubuntu-latest
@@ -100,7 +100,7 @@ jobs:
100100
- name: Run tests
101101
run: |
102102
cd build
103-
./test/run_tests "~[quality]"
103+
./test/run_tests
104104
105105
build-clang11:
106106
runs-on: ubuntu-22.04
@@ -123,7 +123,7 @@ jobs:
123123
- name: Run tests
124124
run: |
125125
cd build
126-
./test/run_tests "~[quality]"
126+
./test/run_tests
127127
128128
build-clang13:
129129
runs-on: ubuntu-22.04
@@ -146,7 +146,7 @@ jobs:
146146
- name: Run tests
147147
run: |
148148
cd build
149-
./test/run_tests "~[quality]"
149+
./test/run_tests
150150
151151
build-clang13-asan:
152152
runs-on: ubuntu-22.04
@@ -169,7 +169,7 @@ jobs:
169169
- name: Run tests with ASAN
170170
run: |
171171
cd build
172-
./test/run_tests "~[quality]"
172+
./test/run_tests
173173
174174
compile-gcc9:
175175
runs-on: ubuntu-latest

.github/workflows/macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Run tests
2727
run: |
2828
cd build
29-
./test/run_tests "~[quality]"
29+
./test/run_tests
3030
build-clang14:
3131
name: Clang 14
3232
runs-on: macOS-latest
@@ -44,7 +44,7 @@ jobs:
4444
- name: Run tests
4545
run: |
4646
cd build
47-
./test/run_tests "~[quality]"
47+
./test/run_tests
4848
build-clang15:
4949
name: Clang 15
5050
runs-on: macOS-latest
@@ -62,4 +62,4 @@ jobs:
6262
- name: Run tests
6363
run: |
6464
cd build
65-
./test/run_tests "~[quality]"
65+
./test/run_tests

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ jobs:
3737
- name: Run tests
3838
run: |
3939
cd build
40-
.\test\Debug\run_tests "~[quality]"
40+
.\test\Debug\run_tests

0 commit comments

Comments
 (0)