Skip to content

test: fix flaky args::tests

Yaroslav Dynnikov requested to merge 63-flaky-test into master

By default cargo runs tests in parallel in multiple threads. Both test_log_level and test_parse access the environment that is shared across threads. Consequently, its concurrent modification results in the test failure.

This patch unites these two tests making it linear.

Closes #63 (closed)

Merge request reports