1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #20382 from maribu/ci/disable_flaky_tests

tests: disable flaky tests on `native` in the CI
This commit is contained in:
Kaspar Schleiser 2024-02-19 14:10:55 +00:00 committed by GitHub
commit 8cca5bec30
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View File

@ -27,7 +27,7 @@ host-tools:
TEST_DEPS += host-tools
include $(RIOTBASE)/Makefile.include
# Test is flaky and regularly derails unrelated merge trains
TEST_ON_CI_BLACKLIST += native native64
include $(RIOTBASE)/Makefile.include

View File

@ -8,4 +8,8 @@ USEMODULE += ztimer_usec
# uncomment this to test using ztimer sec
#USEMODULE += ztimer_sec
# The test is sensitive to background CPU load. On the CI workers a lot of
# compilation tasks are run in parallel, making this test randomly fail.
TEST_ON_CI_BLACKLIST += native native64
include $(RIOTBASE)/Makefile.include