Skip to content

Tox courses

Envlist

List of all the environments that will be tested. Order is important, the first environment is the default one.

example:

ini
[tox]
envlist = 
    begin,
    py{36,37,38},
    end

[testenv]
deps = pytest
commands = pytest

[testenv:begin]
commands = echo "Begin"

[testenv:end]
commands = echo "End"

Testenv

ini
[testenv:<name>]
commands = isort --check-only --diff --recursive src tests
deps = isort