.dockerignore .github/CODEOWNERS LICENSE MANIFEST.in docs/_static/custom.css docs/_static/img/tox.svg docs/_static/img/toxfavi.ico docs/changelog.rst docs/changelog/1836.feature.rst docs/changelog/1837.feature.rst docs/changelog/1926.bugfix.rst docs/changelog/1928.feature.rst docs/changelog/1929.bugfix.rst docs/changelog/1933.bugfix.rst docs/changelog/1947.feature.rst docs/changelog/1956.bugfix.rst docs/changelog/1963.feature.rst docs/changelog/1972.bugfix.rst docs/changelog/1985.bugfix.rst docs/changelog/1987.bugfix.rst docs/changelog/1991.bugfix.rst docs/changelog/1991.doc.rst docs/changelog/1991.feature.rst docs/changelog/2002.bugfix.rst docs/changelog/2005.doc.rst docs/changelog/2006.doc.rst docs/changelog/2007.doc.rst docs/changelog/2012.bugfix.rst docs/changelog/2014.feature.rst docs/changelog/2018.bugfix.rst docs/changelog/template.jinja2 docs/cli_interface.rst docs/conf.py docs/development.rst docs/index.rst docs/installation.rst docs/plugins.rst docs/user_guide.rst pyproject.toml setup.cfg setup.py src/tox/__init__.py src/tox/__main__.py src/tox/config/__init__.py src/tox/config/cli/__init__.py src/tox/config/cli/env_var.py src/tox/config/cli/ini.py src/tox/config/cli/parse.py src/tox/config/cli/parser.py src/tox/config/loader/__init__.py src/tox/config/loader/api.py src/tox/config/loader/convert.py src/tox/config/loader/ini/__init__.py src/tox/config/loader/ini/factor.py src/tox/config/loader/ini/replace.py src/tox/config/loader/memory.py src/tox/config/loader/str_convert.py src/tox/config/loader/stringify.py src/tox/config/main.py src/tox/config/of_type.py src/tox/config/set_env.py src/tox/config/sets.py src/tox/config/source/__init__.py src/tox/config/source/api.py src/tox/config/source/discover.py src/tox/config/source/ini.py src/tox/config/source/legacy_toml.py src/tox/config/source/setup_cfg.py src/tox/config/source/tox_ini.py src/tox/config/types.py src/tox/execute/__init__.py src/tox/execute/api.py src/tox/execute/local_sub_process/__init__.py src/tox/execute/local_sub_process/read_via_thread.py src/tox/execute/local_sub_process/read_via_thread_unix.py src/tox/execute/local_sub_process/read_via_thread_windows.py src/tox/execute/pep517_backend.py src/tox/execute/request.py src/tox/execute/stream.py src/tox/journal/__init__.py src/tox/journal/env.py src/tox/journal/main.py src/tox/plugin/__init__.py src/tox/plugin/inline.py src/tox/plugin/manager.py src/tox/plugin/spec.py src/tox/provision.py src/tox/py.typed src/tox/pytest.py src/tox/report.py src/tox/run.py src/tox/session/__init__.py src/tox/session/cmd/__init__.py src/tox/session/cmd/depends.py src/tox/session/cmd/devenv.py src/tox/session/cmd/legacy.py src/tox/session/cmd/list_env.py src/tox/session/cmd/quickstart.py src/tox/session/cmd/run/__init__.py src/tox/session/cmd/run/common.py src/tox/session/cmd/run/parallel.py src/tox/session/cmd/run/sequential.py src/tox/session/cmd/run/single.py src/tox/session/cmd/show_config.py src/tox/session/cmd/version_flag.py src/tox/session/common.py src/tox/session/state.py src/tox/tox_env/__init__.py src/tox/tox_env/api.py src/tox/tox_env/errors.py src/tox/tox_env/info.py src/tox/tox_env/installer.py src/tox/tox_env/package.py src/tox/tox_env/python/__init__.py src/tox/tox_env/python/api.py src/tox/tox_env/python/package.py src/tox/tox_env/python/pip/__init__.py src/tox/tox_env/python/pip/pip_install.py src/tox/tox_env/python/pip/req/__init__.py src/tox/tox_env/python/pip/req/args.py src/tox/tox_env/python/pip/req/file.py src/tox/tox_env/python/pip/req/util.py src/tox/tox_env/python/pip/req_file.py src/tox/tox_env/python/runner.py src/tox/tox_env/python/virtual_env/__init__.py src/tox/tox_env/python/virtual_env/api.py src/tox/tox_env/python/virtual_env/package/__init__.py src/tox/tox_env/python/virtual_env/package/api.py src/tox/tox_env/python/virtual_env/runner.py src/tox/tox_env/register.py src/tox/tox_env/runner.py src/tox/util/__init__.py src/tox/util/cpu.py src/tox/util/graph.py src/tox/util/pep517/__init__.py src/tox/util/pep517/backend.py src/tox/util/pep517/backend.pyi src/tox/util/pep517/frontend.py src/tox/util/pep517/via_fresh_subprocess.py src/tox/util/spinner.py tasks/release.py tests/__init__.py tests/config/__init__.py tests/config/cli/__init__.py tests/config/cli/conftest.py tests/config/cli/test_cli_env_var.py tests/config/cli/test_cli_ini.py tests/config/cli/test_parse.py tests/config/cli/test_parser.py tests/config/conftest.py tests/config/loader/__init__.py tests/config/loader/ini/__init__.py tests/config/loader/ini/conftest.py tests/config/loader/ini/replace/__init__.py tests/config/loader/ini/replace/conftest.py tests/config/loader/ini/replace/test_replace.py tests/config/loader/ini/replace/test_replace_env_var.py tests/config/loader/ini/replace/test_replace_os_sep.py tests/config/loader/ini/replace/test_replace_posargs.py tests/config/loader/ini/replace/test_replace_tox_env.py tests/config/loader/ini/replace/test_replace_tty.py tests/config/loader/ini/test_factor.py tests/config/loader/ini/test_ini_loader.py tests/config/loader/test_loader.py tests/config/loader/test_memory_loader.py tests/config/loader/test_str_convert.py tests/config/source/__init__.py tests/config/source/test_discover.py tests/config/source/test_legacy_toml.py tests/config/source/test_setup_cfg.py tests/config/source/test_tox_ini.py tests/config/test_main.py tests/config/test_of_types.py tests/config/test_set_env.py tests/config/test_sets.py tests/config/test_types.py tests/conftest.py tests/demo_pkg_inline/build.py tests/demo_pkg_inline/build.pyi tests/demo_pkg_inline/pyproject.toml tests/demo_pkg_setuptools/demo_pkg_setuptools/__init__.py tests/demo_pkg_setuptools/pyproject.toml tests/demo_pkg_setuptools/setup.cfg tests/execute/__init__.py tests/execute/conftest.py tests/execute/local_subprocess/__init__.py tests/execute/local_subprocess/bad_process.py tests/execute/local_subprocess/local_subprocess_sigint.py tests/execute/local_subprocess/test_local_subprocess.py tests/execute/local_subprocess/tty_check.py tests/execute/test_request.py tests/execute/test_stream.py tests/journal/__init__.py tests/journal/test_main_journal.py tests/plugin/test_inline.py tests/pytest_/__init__.py tests/pytest_/test_init.py tests/session/__init__.py tests/session/cmd/__init__.py tests/session/cmd/run/__init__.py tests/session/cmd/run/test_common.py tests/session/cmd/test_depends.py tests/session/cmd/test_devenv.py tests/session/cmd/test_legacy.py tests/session/cmd/test_list_envs.py tests/session/cmd/test_parallel.py tests/session/cmd/test_quickstart.py tests/session/cmd/test_sequential.py tests/session/cmd/test_show_config.py tests/session/cmd/test_state.py tests/session/test_session_common.py tests/test_call_modes.py tests/test_provision.py tests/test_report.py tests/test_run.py tests/test_version.py tests/tox_env/__init__.py tests/tox_env/python/__init__.py tests/tox_env/python/pip/req/test_file.py tests/tox_env/python/pip/test_pip_install.py tests/tox_env/python/pip/test_req_file.py tests/tox_env/python/test-pkg/pyproject.toml tests/tox_env/python/test_python_api.py tests/tox_env/python/test_python_runner.py tests/tox_env/python/virtual_env/__init__.py tests/tox_env/python/virtual_env/test_package.py tests/tox_env/python/virtual_env/test_setuptools.py tests/tox_env/python/virtual_env/test_virtualenv_api.py tests/tox_env/test_info.py tests/tox_env/test_register.py tests/tox_env/test_tox_env_api.py tests/util/__init__.py tests/util/test_cpu.py tests/util/test_graph.py tests/util/test_pep517.py tests/util/test_spinner.py tox.ini <<<<<< network # path=./.tox/4/coverage.xml /home/runner/work/tox/tox /home/runner/work/tox/tox/.tox/4/py36/lib/python3.6/site-packages/tox /home/runner/work/tox/tox/tests <<<<<< EOF