azure-cli-dev-tools
azure-cli-dev-tools copied to clipboard
azdev test -x, --exitfirst exit instantly on first error or failed test.
pytest has a parameter
-x, --exitfirst exit instantly on first error or failed test.
while azdev test has a opposite parameter
--no-exitfirst : Do not exit on first error or failed test.
pytest is the underlying tool of azdev.
I suggest keep the same with pytest. And --no-exitfirst breaks the original behavior.
Any update?
--no-exitfirst was introduced in https://github.com/Azure/azure-cli-dev-tools/pull/191. I agree with @qwordy that by default we should not exit on first error and continue all tests.
Any update?
@haroldrandom