summaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
authorStephan Obermann <stephan.obermann@gmail.com>2016-06-25 18:47:48 +0200
committerStephan Obermann <stephan.obermann@gmail.com>2016-06-25 18:47:48 +0200
commit214ed8a7cde5f68882a566df86ce3878fa66ec77 (patch)
treef0e5576ab98a73320aa9795930f6dc63b1ee95e2 /CHANGELOG
parentb50a6ecf3077bd5b4f8fe9a6a740d8fd154c5753 (diff)
parent14ae8802f0241dca1f4d775646b25cc56769034d (diff)
downloadtox-214ed8a7cde5f68882a566df86ce3878fa66ec77.tar.gz
Merged hpk42/tox into default
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG22
1 files changed, 12 insertions, 10 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 999ba96..a195066 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -5,21 +5,23 @@
chars "{" and "}" to appear in your commands or other ini values.
Thanks John Vandenberg.
-- add --workdir option to override where tox stores its ".tox" directory
+- addresses issue66: add --workdir option to override where tox stores its ".tox" directory
and all of the virtualenv environment. Thanks Danring.
- introduce per-venv list_dependencies_command which defaults
- to "python -m pip freeze" to obtain the list of installed packages.
- If you need to run python2.6 you need to configure it to
- something like "pip freeze". Thanks Ted Shaw, Holger Krekel.
+ to "pip freeze" to obtain the list of installed packages.
+ Thanks Ted Shaw, Holger Krekel.
-- fix issue66, issue121: change install_command to use "python -m pip"
- by default instead of "pip ..." directly which avoids long shebang
- issues. If you need to run python2.6 you need to configure it to
- something like "pip install {opts} {packages}". Thanks Ted Shaw,
- Holger Krekel.
+- close issue66: add documentation to jenkins page on how to avoid
+ "too long shebang" lines when calling pip from tox. Note that we
+ can not use "python -m pip install X" by default because the latter
+ adds the CWD and pip will think X is installed if it is there.
+ "pip install X" does not do that.
-- New feature: When a search for a config file fails, tox tries loading
+- new list_dependencies_command to influence how tox determines
+ which dependencies are installed in a testenv.
+
+- (experimental) New feature: When a search for a config file fails, tox tries loading
setup.cfg with a section prefix of "tox".
- fix issue275: Introduce hooks ``tox_runtest_pre``` and