'setup.py trial'). 'setup.py trial' clobbers the tahoe .egg's PKG-INFO
"Version:" field (resetting it to 0.0.0), possibly because it isn't invoking
the darcsver subcommand that 'setup.py test' does before it runs the 'trial'
subcommand.
This slows down quicktest by another couple of seconds (see #591) and adds
more noise to its output, but without this change, 'make test' and 'make
quicktest' fail on test_runner (which spawns bin/tahoe as a subprocess, and
with a mangled Version:, the setuptools-based entry point script refuses to
recognize our source tree as a usable version of Tahoe).
# suppress the ansi color sequences
test: build src/allmydata/_version.py
- $(PYTHON) setup.py trial $(TRIALARGS) -s $(TEST)
+ $(PYTHON) setup.py test $(TRIALARGS) -s $(TEST)
quicktest: .built .checked-deps
- $(PYTHON) setup.py trial $(TRIALARGS) -s $(TEST)
+ $(PYTHON) setup.py test $(TRIALARGS) -s $(TEST)
fuse-test: .built .checked-deps
$(RUNPP) -d contrib/fuse -p -c runtests.py