You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We want to skip tests if certain environment variables are NOT set (e.g. SOCKS_PROXY) so that developers do not need to provide a full-blown integration test infrastructure if they only work on a subset of the features.
ACs
tests are skipped when environment variables are NOT set
tests are skipped at runtime, NOT at compile time
skipped tests are marked as "ignored"
tests skipping requires little code (ideally a single line in form of a decorator, a function call, a macro call)
Abstract
We want to skip tests if certain environment variables are NOT set (e.g.
SOCKS_PROXY
) so that developers do not need to provide a full-blown integration test infrastructure if they only work on a subset of the features.ACs
Current Situation
We currently use macros like this:
rskafka/tests/test_helpers.rs
Lines 75 to 93 in 6510b23
This fulfills all ACs except for
skipped tests are marked as "ignored"
.References
The text was updated successfully, but these errors were encountered: