logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Tox - Automate Python Testing Across Versions | Online Free DevTools by Hexmos

Automate Python testing with Tox across multiple versions, ensuring compatibility and reliability. Free online tool, no registration required.

tox

Automate Python testing across multiple Python versions. Use tox.ini to configure environments and test command. More information: https://github.com/tox-dev/tox.

  • Run tests on all test environments:

tox

  • Create a tox.ini configuration:

tox-quickstart

  • List the available environments:

tox {{[-a|--listenvs-all]}}

  • Run tests on a specific environment (e.g. Python 3.6):

tox -e {{py36}}

  • Force the virtual environment to be recreated:

tox {{[-r|--recreate]}} -e {{py27}}

See Also