Testing Documentation Enhancement #2
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The statement in TESTING.md outlines the following:
The ignorance to interpreter not being found should no longer be deemed acceptable. tox allows for specific interpreters to be used during testing, which the test system supports; such that, if the test system does not support Python 2.x, specifying it as an interpreter is redundant.
Achieving interpreter-specific tox testing, the argument flag
-efollowed by a Python interpreter version should be the ideal practice.Example:
tox -e py39, to run only Python 3.9 testing.Example:
tox -e py36 -e py310, to run only Python 3.6 and Python 3.10 testing.