summaryrefslogtreecommitdiff
path: root/src/tox/config/sets.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/tox/config/sets.py')
-rw-r--r--src/tox/config/sets.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tox/config/sets.py b/src/tox/config/sets.py
index c87701f8..0315369a 100644
--- a/src/tox/config/sets.py
+++ b/src/tox/config/sets.py
@@ -199,8 +199,8 @@ class CoreConfigSet(ConfigSet):
self.add_config(
keys=["temp_dir"],
of_type=Path,
- default=lambda conf, _: cast(Path, self["tox_root"]) / ".tmp", # noqa: U100, U101
- desc="temporary directory cleaned at start",
+ default=lambda conf, _: cast(Path, self["work_dir"]) / ".tmp", # noqa: U100, U101
+ desc="a folder for temporary files (is not cleaned at start)",
)
def _on_duplicate_conf(self, key: str, definition: ConfigDefinition[V]) -> None: # noqa: U100