aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorBenoit Pierre <benoit.pierre@gmail.com>2019-05-14 17:01:08 +0200
committerBenoit Pierre <benoit.pierre@gmail.com>2019-05-14 17:01:08 +0200
commit835580ae8926fc6ca7560ab7421387e3ba47242c (patch)
tree9e7393ed471093a5910bcb549df24c4489d83eb6 /tox.ini
parent9146e8808d3912c5a193f6f9b0cc32c13bc4a4fc (diff)
downloadexternal_python_setuptools-835580ae8926fc6ca7560ab7421387e3ba47242c.tar.gz
external_python_setuptools-835580ae8926fc6ca7560ab7421387e3ba47242c.tar.bz2
external_python_setuptools-835580ae8926fc6ca7560ab7421387e3ba47242c.zip
tox: tweak configuration
Fix the `list_dependencies_command` so arguably the most important packages are not hidden (pip, setuptools, and wheel).
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index bb940ac0..e0eef95a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -14,7 +14,7 @@ deps=-rtests/requirements.txt
# from being added to `sys.path`.
install_command=python -c 'import sys; sys.path.remove(""); from pkg_resources import load_entry_point; load_entry_point("pip", "console_scripts", "pip")()' install {opts} {packages}
# Same as above.
-list_dependencies_command={envbindir}/pip freeze
+list_dependencies_command={envbindir}/pip freeze --all
setenv=COVERAGE_FILE={toxworkdir}/.coverage.{envname}
# TODO: The passed environment variables came from copying other tox.ini files
# These should probably be individually annotated to explain what needs them.