Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge from defaulthook/report-status | Steffen Allner | 2016-06-20 | 16 | -96/+264 |
|\ | |||||
| * | merge | holger krekel | 2016-06-20 | 5 | -13/+75 |
| |\ | |||||
| | * | Merged in issue336 (pull request #198) | Andrzej Ostrowski | 2016-06-20 | 2 | -5/+67 |
| | |\ | | | | | | | | | | | | | #336 make flakes pass | ||||
| | | * | Merged in wscheper/tox/config-in-setup-cfg (pull request #192) | Andrzej Ostrowski | 2016-06-20 | 16 | -89/+170 |
| | | |\ | | | | | | | | | | | | | | | | Support configuration through setup.cfg | ||||
| | | * | | Support configuration through setup.cfgconfig-in-setup-cfg | Walter Scheper | 2016-03-10 | 2 | -5/+67 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the usual search for a config file fails, try loading setup.cfg with a section prefix of tox. Modeled on coverage's use of setup.cfg as an alternative config file. | ||||
| | * | | | Close branch issue336issue336 | Andrzej Ostrowski | 2016-06-20 | 0 | -0/+0 |
| | | | | | |||||
| | * | | | make flakes pass | Oliver Bestwalter | 2016-06-20 | 5 | -8/+8 |
| | | |/ | | |/| | |||||
| * | | | add --workdir option to override where tox stores its ".tox" directory | holger krekel | 2016-06-20 | 16 | -91/+197 |
| |\ \ \ | | |/ / | | | | | | | | | and all of the virtualenv environment. Thanks Danring. | ||||
| | * | | Merged in ↵ | Holger Krekel | 2016-06-20 | 15 | -87/+169 |
| | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | bittner/tox/bittner/remove-invalid-return-value-in-toxcmdlin-1465935081972 (pull request #196) Remove invalid return value in tox.cmdline() example | ||||
| | | * \ | Merged in pjdelport/tox/fix-flakes (pull request #187) | Oliver Bestwalter | 2016-06-20 | 10 | -77/+182 |
| | | |\ \ | | | | | | | | | | | | | | | | | | | Make "tox -e flakes" pass | ||||
| | | | * | | fix issue66 by introducing using default "python -m pip" | holger krekel | 2016-06-20 | 9 | -12/+58 |
| | | | | | | | | | | | | | | | | | | | | | | | | and introducing list_dependencies_command. (Ted, Holger) | ||||
| | | | * | | Merged in nyirogergo/tox (pull request #188) | Oliver Bestwalter | 2016-06-20 | 6 | -67/+125 |
| | | | |\ \ | | | | | | | | | | | | | | | | | | | | | | session.Reporter: delete _starttime at exit | ||||
| | | | | * | | update CHANGELOG | Oliver Bestwalter | 2016-06-20 | 1 | -43/+45 |
| | | | | | | | |||||
| | | | | * | | #317 raise minversion in test to avoid breakage on next major update | Oliver Bestwalter | 2016-06-20 | 1 | -1/+1 |
| | | | | | | | |||||
| | | | | * | | Merged in ↵ | Danielle Jenkins | 2016-06-20 | 1 | -3/+3 |
| | | | | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | d0ugal/tox/d0ugal/correct-forcedeps-to-be-forcedep-in-the--1457531878676 (pull request #191) Correct --force-deps to be --force-dep in the CHANGELOG. | ||||
| | | | | | * | | Correct --force-deps to be --force-dep in the CHANGELOG.d0ugal/correct-forcedeps-to-be-forcedep-in-the--1457531878676 | Dougal Matthews | 2016-03-09 | 1 | -3/+3 |
| | | | | | |/ | |||||
| | | | | * | | Merged in nakatoio/tox (pull request #190) | Oliver Bestwalter | 2016-06-20 | 1 | -0/+14 |
| | | | | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | Process minversion before all else | ||||
| | | | | | * | | Add test for issue #307 | Sachi King | 2016-05-10 | 1 | -0/+14 |
| | | | | | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a test to address the second example in issue #307, the first example is already addressed. Closes issue #307 | ||||
| | | | | * | | Process minversion before all else | Sachi King | 2016-02-29 | 4 | -16/+35 |
| | | | | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reading the tox.ini config file and processing it is done as one task, yet processing the minversion is done much later, as such if there is a bug fix in a newer version or a change that makes the tox.ini file incompatable with older versions tox will bail with a stack trace instead of a "Your tox is too old" message. This moves the version check as early as it can possibly be done, the very first value read out of tox.ini is minversion and it is immedeiatly compared to tox.__version__. | ||||
| | | | * | | session.Reporter: delete _starttime at exit | Nyiro Gergo | 2016-01-14 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The __enter__ of with statement extend the action object with _starttime and assert if it had been already extended. Therefore the __exit__ should remove the extra attribute of the action. | ||||
| | | * | | | Remove separating spaces in "print (...)" (pep8 E211)fix-flakes | Piet Delport | 2016-01-04 | 5 | -11/+11 |
| | | | | | | |||||
| | | * | | | Mark guarded "unicode" reference with noqa | Piet Delport | 2016-01-04 | 1 | -1/+1 |
| | | |/ / | |||||
| | * | | | Remove invalid return value in tox.cmdline() examplebittner/remove-invalid-return-value-in-toxcmdlin-1465935081972 | Peter Bittner | 2016-06-14 | 1 | -2/+1 |
| | | |/ | | |/| | |||||
| * | | | Add test for --workdir command line option | Dan Ring | 2015-12-17 | 1 | -0/+17 |
| | | | | |||||
| * | | | Add --workdir to override the 'toxworkdir' config option | Dan Ring | 2015-12-17 | 1 | -1/+7 |
| | |/ | |/| | |||||
* | | | Add tests for tox_runtest_pre/post. | Matthew Schinckel | 2016-04-09 | 1 | -0/+24 |
| | | | | | | | | | | | | | | | | | | Resolves issue #275. Supersedes pull request #175. | ||||
* | | | Improve doc strings. | Matthew Schinckel | 2016-04-09 | 1 | -2/+8 |
| | | | |||||
* | | | Update to meet PR 175 requirements. | Matthew Schinckel | 2016-04-09 | 3 | -4/+10 |
| | | | | | | | | | | | | Does not yet contain tests. | ||||
* | | | Add support for extensible reporting on status. | Matthew Schinckel | 2016-03-16 | 2 | -0/+12 |
| |/ |/| | |||||
* | | bump version, fix tox.ini | holger krekel | 2016-02-11 | 3 | -4/+3 |
| | | |||||
* | | fix issue279: allow cross-section substitution when the value contains | holger krekel | 2016-02-11 | 1 | -0/+3 |
| | | | | | | | | posargs. Thanks Sachi King for the PR. | ||||
* | | Merged in nakatoio/tox (pull request #189) | holger krekel | 2016-02-11 | 2 | -1/+15 |
|\ \ | | | | | | | | | | Fix section substitution with {posargs} | ||||
| * | | Fix section substitution with {posargs} | Sachi King | 2016-02-11 | 2 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | Use crossonly to stop substitution immediately after the section is substituted, the values run through substitution again afterwards, and this will clean off {posargs} and any other substitutions that need to be made. | ||||
| * | | Add test for subsitition from other section with posargs | Sachi King | 2016-02-11 | 1 | -0/+14 |
| |/ | | | | | | | | | | | Test command substitution from other section with {posargs} in use. Issue #279 | ||||
* | | fix issue314: fix invocation of .py scripts on windows | holger krekel | 2016-02-11 | 3 | -2/+9 |
|/ | |||||
* | Added tag 2.3.1 for changeset cfabce992c4c | holger krekel | 2015-12-14 | 0 | -0/+0 |
| | |||||
* | fix issue294: re-allow cross-section substitution for setenv setting.2.3.1 | holger krekel | 2015-12-14 | 5 | -15/+56 |
| | |||||
* | Added tag 2.3.0 for changeset 4a8b2093838f | holger krekel | 2015-12-11 | 0 | -0/+0 |
| | |||||
* | deprecate indexserver options2.3.0 | holger krekel | 2015-12-09 | 2 | -8/+11 |
| | |||||
* | implement new experimental hooks for venv creation | holger krekel | 2015-12-09 | 8 | -53/+114 |
| | |||||
* | some small refactorings | holger krekel | 2015-12-09 | 2 | -6/+16 |
| | |||||
* | internal: push some optional object creation into tests because | holger krekel | 2015-12-09 | 4 | -39/+58 |
| | | | | tox core doesn't need it. | ||||
* | fix flakes problem | holger krekel | 2015-12-07 | 1 | -2/+2 |
| | |||||
* | merge | holger krekel | 2015-12-07 | 3 | -3/+6 |
|\ | |||||
| * | Merged in pmezard/tox (pull request #183) | holger krekel | 2015-12-06 | 1 | -2/+2 |
| |\ | | | | | | | | | | Fix minor typo in --help message | ||||
| | * | Merged in cdunklau/tox/fix-minor-typos-in-config-doc (pull request #182) | holger krekel | 2015-12-06 | 0 | -0/+0 |
| | |\ | | | | | | | | | | | | | Fix minor typos in config doc | ||||
| | * | | Fix two minor typos in config docfix-minor-typos-in-config-doc | Colin Dunklau | 2015-12-04 | 1 | -2/+2 |
| | | | | |||||
| | * | | Created new branch fix-minor-typos-in-config-doc | Colin Dunklau | 2015-12-04 | 0 | -0/+0 |
| | |/ | |||||
| * | | Fix minor typo in --help message | Patrick Mezard | 2015-12-05 | 1 | -1/+1 |
| |/ | |||||
| * | Merged in pmoore/tox/document-py-env (pull request #181) | holger krekel | 2015-12-02 | 1 | -0/+3 |
| |\ | | | | | | | | | | Document the 'py' environment |