summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMasen Furer <m_github@0x26.net>2023-01-17 07:13:55 -0800
committerGitHub <noreply@github.com>2023-01-17 07:13:55 -0800
commit2a87375617a228d655b31856c6a39d9957fb9484 (patch)
treeeeee6ae341b10ac92eaf80ad233c7d88983d7a18 /docs
parent1ba041908fa9c225840aafa4cbc01fd6521e804b (diff)
downloadtox-git-2a87375617a228d655b31856c6a39d9957fb9484.tar.gz
Provision cwd (#2877)
Fix https://github.com/tox-dev/tox/issues/2876
Diffstat (limited to 'docs')
-rw-r--r--docs/changelog/2876.bugfix.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/changelog/2876.bugfix.rst b/docs/changelog/2876.bugfix.rst
new file mode 100644
index 00000000..94f54756
--- /dev/null
+++ b/docs/changelog/2876.bugfix.rst
@@ -0,0 +1,7 @@
+When executing via the provisioning environment (``.tox`` by default), run
+``tox`` in working directory of the parent process.
+
+Prior to this change (from tox 4.0.0), the provisioned ``tox`` would execute with
+``{tox_root}`` as the working directory, which breaks when a relative path is
+passed to ``-c`` or ``--conf`` and ``tox`` is executed in a working directory
+other than ``{tox_root}`` - by :user:`masenf`.