tdiesler commented on PR #5475: URL: https://github.com/apache/camel-k/pull/5475#issuecomment-2147183230
> just another nitpick: I have started to document the available E2E test env vars in https://github.com/apache/camel-k/blob/main/e2e/README.md#environment-variables > > Maybe we can add a section on how to run tests locally with Makefile and the possible env var settings I now promoted the env var table to the top and the skip var is now local to the smoke tests like this ... ``` test-smoke: do-build TEST_SKIP_AFTER_FAILURE_COUNT="$(TEST_SKIP_AFTER_FAILURE_COUNT)"; \ if [[ $$TEST_SKIP_AFTER_FAILURE_COUNT = "" ]]; then \ TEST_SKIP_AFTER_FAILURE_COUNT=0; \ fi; \ FAILED=0; STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)"; \ ``` Folks wanting to see more than one smoke test failure are likely familiar with the Makefile anyway - so I guess it sufficiently documents itself here. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
