Skip to content

Commit c453efd

Browse files
committed
Enable all test for Windows GitHub worker again
After fixing the iterator design, the all windows test should work again.
1 parent 77893f2 commit c453efd

2 files changed

Lines changed: 1 addition & 9 deletions

File tree

.github/workflows/windows.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@ jobs:
1717
- name: Build Project
1818
run: cmake --build build --config Debug
1919
- name: Run Tests
20-
# Using the '--exclude-label' flag to skip the problematic tests on
21-
# the Windows GitHub worker.
22-
# This command will now run all tests *except* those flagged.
2320
run: |
2421
cd build
25-
ctest -C Debug --verbose -LE "ci_flaky"
22+
ctest -C Debug --verbose
2623

tests/CMakeLists.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,3 @@ add_executable(test_move_semantics test_move_semantics.cpp)
2727
target_link_libraries(test_move_semantics PRIVATE spsc_queue Threads::Threads)
2828
add_test(NAME MoveSemantics COMMAND test_move_semantics)
2929

30-
# Add a label to the MoveSemantics test so it can be disabled
31-
# This annotates the test, allowing us to specifically exclude it in certain
32-
# environments (like GitHub worker)
33-
set_tests_properties(MoveSemantics PROPERTIES LABELS "ci_flaky")
34-

0 commit comments

Comments
 (0)