diff --git a/test/Graphics/VertexBuffer.test.cpp b/test/Graphics/VertexBuffer.test.cpp index ff7cc600..63f20dbf 100644 --- a/test/Graphics/VertexBuffer.test.cpp +++ b/test/Graphics/VertexBuffer.test.cpp @@ -16,7 +16,8 @@ static_assert(!std::is_nothrow_move_constructible_v); static_assert(std::is_move_assignable_v); static_assert(!std::is_nothrow_move_assignable_v); -TEST_CASE("[Graphics] sf::VertexBuffer" * doctest::skip(skipDisplayTests)) +// Skip these tests because they produce flakey failures in CI when using xvfb-run +TEST_CASE("[Graphics] sf::VertexBuffer" * doctest::skip(true)) { // Skip tests if vertex buffers aren't available if (!sf::VertexBuffer::isAvailable()) diff --git a/test/Window/Cursor.test.cpp b/test/Window/Cursor.test.cpp index bb53c2f7..9fab2950 100644 --- a/test/Window/Cursor.test.cpp +++ b/test/Window/Cursor.test.cpp @@ -11,7 +11,8 @@ static_assert(!std::is_copy_assignable_v); static_assert(!std::is_nothrow_move_constructible_v); static_assert(!std::is_nothrow_move_assignable_v); -TEST_CASE("[Window] sf::Cursor" * doctest::skip(skipDisplayTests)) +// Skip these tests because they fail when using DRM which hasn't implemented sf::Cursor +TEST_CASE("[Window] sf::Cursor" * doctest::skip(true)) { SUBCASE("Construction") {