Skip to content

Commit cc3d3e6

Browse files
stephenfingaborbernat
authored andcommitted
Touch '.egg-info' directory after install (#909) (#910)
When a project is using `skipsdist = True` and `usedevelop = True`, tox will attempt to determine when it needs to reinstall the package (the `develop-inst-nodeps` activity) and when it does not (the `develop-inst-noop` target). It does this by comparing the last modified timestamps of the 'setup.py' or 'setup.cfg' files with that of the `.egg-info` directory. Unfortunately, this is a flawed check as, even after running the `develop-inst-nodeps` activity (which executes a variant of `pip install -e $setupdir --no-deps`) the timestamp of the `.egg-info` directory is not updated. This is a particularly irritating issue for larger projects when the install step can take many seconds or even minutes. The ideal fix would be in setuptools. However, while we wait on this, we can fix it ourselves by simply `touch`ing the `.egg-info` directory after a reinstall. We do this.
1 parent 3b0a367 commit cc3d3e6

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

changelog/909.bugfix.rst

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
A caching issue that caused the ``develop-inst-nodeps`` action, which
2+
reinstalls the package under test, to always run has been resolved. The
3+
``develop-inst-noop`` action, which, as the name suggests, is a no-op, will now
4+
run unless there are changes to ``setup.py`` or ``setup.cfg`` files that have
5+
not been reflected - by @stephenfin

src/tox/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1219,7 +1219,7 @@ def getstring(self, name, default=None, replace=True, crossonly=False):
12191219
else:
12201220
x = self._apply_factors(x)
12211221

1222-
if replace and x and hasattr(x, 'replace'):
1222+
if replace and x and hasattr(x, "replace"):
12231223
x = self._replace(x, name=name, crossonly=crossonly)
12241224
# print "getstring", self.section_name, name, "returned", repr(x)
12251225
return x

src/tox/venv.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -238,11 +238,20 @@ def _needs_reinstall(self, setupdir, action):
238238
break
239239
else:
240240
return True
241-
return any(
241+
needs_reinstall = any(
242242
conf_file.check() and conf_file.mtime() > egg_info.mtime()
243243
for conf_file in (setup_py, setup_cfg)
244244
)
245245

246+
# Ensure the modification time of the egg-info folder is updated so we
247+
# won't need to do this again.
248+
# TODO(stephenfin): Remove once the minimum version of setuptools is
249+
# high enough to include https://github.com/pypa/setuptools/pull/1427/
250+
if needs_reinstall:
251+
egg_info.setmtime()
252+
253+
return needs_reinstall
254+
246255
def developpkg(self, setupdir, action):
247256
assert action is not None
248257
if getattr(self, "just_created", False):

tests/test_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1440,7 +1440,7 @@ def test_take_dependencies_from_other_testenv(self, newconfig, envlist, deps):
14401440
)
14411441
conf = newconfig([], inisource).envconfigs["py27"]
14421442
packages = [dep.name for dep in conf.deps]
1443-
assert packages == list(deps) + ['fun', 'frob>1.0,<2.0']
1443+
assert packages == list(deps) + ["fun", "frob>1.0,<2.0"]
14441444
# assert packages == ["pytest", "pytest-cov", "fun", "frob>1.0,<2.0"]
14451445

14461446
# https://github.com/tox-dev/tox/issues/706

0 commit comments

Comments
 (0)