diff options
Diffstat (limited to 'src/tox/pytest.py')
-rw-r--r-- | src/tox/pytest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tox/pytest.py b/src/tox/pytest.py index a00ef3fb..d6b0be86 100644 --- a/src/tox/pytest.py +++ b/src/tox/pytest.py @@ -147,6 +147,8 @@ class ToxProject: with self.monkeypatch.context() as m: m.setattr(tox.run, "setup_state", our_setup_state) m.setattr(sys, "argv", [sys.executable, "-m", "tox"] + list(args)) + m.setenv("VIRTUALENV_SYMLINK_APP_DATA", "1") + m.setenv("VIRTUALENV_SYMLINKS", "1") try: tox_run(args) except SystemExit as exception: |