-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tests: use native
terminal where necessary
#20213
Conversation
native
terminalnative
terminal where necessary
To me it would sound sane to run all native tests without pyterm: diff --git a/tests/Makefile.tests_common b/tests/Makefile.tests_common
index 5e988d903f..d96751c3ad 100644
--- a/tests/Makefile.tests_common
+++ b/tests/Makefile.tests_common
@@ -17,3 +17,7 @@ RIOTBASE ?= $(CURDIR)/../..
QUIET ?= 1
# DEVELHELP enabled by default for all tests, set 0 to disable
DEVELHELP ?= 1
+
+ifeq (native, $(BOARD))
+ RIOT_TERMINAL ?= native
+endif |
a4842ae
to
4d4afed
Compare
I agree, but we have many 'interactive' tests or tests that are more like examples where having How about only disabling |
I think the release tests need this as well: https://github.com/RIOT-OS/RIOT/actions/runs/7361658214/job/20039229745. :-/ |
Closing this in favor of #20215 |
Contribution description
For some reason those only are detected by CI when disabling Kconfig builds (#20211)
Testing procedure
Issues/PRs references
same as #20212