summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Merged in dstanek/tox/bug_181 (pull request #174)holger krekel2015-11-201-4/+24
|\ | | | | | | Fixes bug 181; allow # in commands
| * Fixes bug 181; allow # in commandsbug_181David Stanek2015-10-051-4/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | If a # was in a command the original code naively removed it and everything after assuming it was a comment. This meant that a # could not be used in a command even if it was quoted or escaped. This fix is backward incompatible because it no longer allows a comment to appear after a line escape (\). I think is is acceptable because in most other environments a backslash would preceed a newline to escape it and tell the interpreter to ignore it. This brings tox's command behavior more in line with what Unix shells or Python actually do.
* | fix setenv/substitution bug2.2.1holger krekel2015-11-111-0/+26
| |
* | fix issue280: fix case where --skip-missing-interpreter would not work if ↵holger krekel2015-11-091-2/+17
| | | | | | | | {envsitepackagesdir} substitution was used.
* | Merged in rebeckag/tox/174-voting-testenv (pull request #170)holger krekel2015-11-062-0/+24
|\ \ | | | | | | | | | #174 voting testenv
| * | Renamed testenv attribute from 'voting' to 'ignore_outcome'.Rebecka Gulliksson2015-08-242-8/+10
| | |
| * | Reverted unnecessary code formatting changes.Rebecka Gulliksson2015-08-241-53/+31
| | |
| * | Added test for non-voting testenv with failing command.Rebecka Gulliksson2015-08-241-0/+13
| | |
| * | Added 'voting' testenv attribute.Rebecka Gulliksson2015-08-241-31/+62
| |/
* | fix issue281: make --force-deps work when urls are present in a dep configholger krekel2015-11-021-0/+20
| |
* | Merged in itxaka/tox/fix_env_use (pull request #169)holger krekel2015-10-301-0/+12
|\ \ | | | | | | | | | Tries to fix #99
| * \ Merged in olliewalsh/tox (pull request #167)holger krekel2015-10-291-0/+12
| |\ \ | | |/ | |/| | | | Reorder the processing of testenv options.
| | * Cleanup flakesOllie Walsh2015-07-031-3/+3
| | |
| | * Reorder the processing of testenv options. Fixes issue #246Ollie Walsh2015-07-031-0/+12
| | |
* | | Add testsItxaka2015-08-311-0/+22
|/ /
* | Fix issue #265 - Pass LD_LIBRARY_PATH by defaultfix_issue_265David Donovan Riddle2015-07-141-0/+1
|/ | | | | This fix passes the LD_LIBRARY_PATH environment variable by default. This was done to support RedHat Software Collections.
* some fixes for detox, preparing 2.1.12.1.1holger krekel2015-06-232-21/+11
|
* introduce a TOX_TESTENV_PASSENV setting which is honoredholger krekel2015-06-191-0/+12
| | | | when constructing the set of environment variables for test environments.
* Merged in acaron/tox (pull request #163)holger krekel2015-06-191-0/+11
|\ | | | | | | Adds support for multiline envlist setting.
| * Adds support for multiline envlist setting.Andre Caron2015-06-041-0/+11
| |
* | make passenv attribute type line-listpassenv_multilineStefano Mazzucco2015-06-181-2/+22
| |
* | merge with defaultStefano Mazzucco2015-06-181-2/+32
|\ \
| * | hpk42/tox/issue/259/passenv-statement-should-accept-multi-linemazzucco2015-06-181-2/+32
| |/
* | cleanup internal env variable code a bitholger krekel2015-06-181-1/+0
| |
* | remove --set-home option which probably nobody used and was hackily implementedholger krekel2015-06-181-45/+0
| |
* | allow all env variables during installation of dependenciesholger krekel2015-06-181-1/+5
|/
* add SYSTEMDRIVE into default passenv on windows to allow pip6 to work.holger krekel2015-06-031-0/+1
| | | | Thanks Michael Krause.
* pass LANG variable to the test environmentAlexandre Conrad2015-06-011-0/+1
|
* also pass PIP_INDEX_URL because it's likely that the user wants to use2.0.0holger krekel2015-05-121-0/+1
| | | | it with the pip commands that run inside the tox run.
* show all registered per-testenv ini valuesholger krekel2015-05-121-2/+2
|
* - fix TMP env variable and test on windowsholger krekel2015-05-121-0/+4
| | | | | - add release announcement - bump version to 2.0.0
* rename internal files -- in any case tox offers no external API except for theholger krekel2015-05-124-17/+17
| | | | experimental plugin hooks, use tox internals at your own risk.
* - store and show information about what is installed in each venvholger krekel2015-05-122-41/+43
| | | | | - rename internal methods to accomodate the fact that we are not only installing sdist's
* merge defaultholger krekel2015-05-111-0/+10
|\
| * test_config: Add some tests for new ignore_errors settingMarc Abramowitz2015-05-051-0/+10
| |
* | refactor testenv section parser to work by registering ini attributesholger krekel2015-05-112-91/+94
| | | | | | | | | | at tox_addoption() time. Introduce new "--help-ini" or "--hi" option to show all testenv variables.
* | make tox_get_python_executable hook receive "envconfig" instead of just ↵holger krekel2015-05-102-19/+31
| | | | | | | | basepython setting
* | introduce little plugin system which allows to add command line options,holger krekel2015-05-083-32/+18
| | | | | | | | | | perform extra configuration and determine how python executables are found (see hookspec)
* | Backed out changeset cc1933175162holger krekel2015-05-083-18/+32
| |
* | introduce little plugin system based on pluggyholger krekel2015-05-083-32/+18
|/ | | | | and refactor/streamline some code with relation to getting executables
* fix issue240: allow to specify empty argument list without it beingholger krekel2015-04-281-0/+9
| | | | rewritten to ".". Thanks Daniel Hahler.
* fix PEP8 violationsVladimir Vitvitskiy2015-04-235-87/+164
| | | | | | | * tox.ini updated to run PEP8 checks along with flakes * added dev test environment to run any command in it or looponfail tests * fixed all PEP8 violations pytest-pep8 complained about * line width set to 99
* fix issue #120: section subs in commands doesn't workVladimir Vitvitskiy2015-04-211-22/+60
| | | | | | | | | | | | | | | | | | | | | | Problem ----------- Section substitution for `commands` doesn't work correctly. Acceptance ---------------- When section substitution is specified as a single form of `commands` declaration it is replaced with parsed list of commands. When section substation happens as part of the other command line declaration - preserve original behaviour. Changes ------------ - fixes for the issue - some PEP8 violations are fixed - tests for the substation in `commands` are grouped
* remove the long-deprecated "distribute" option as it has no effect these days.holger krekel2015-04-212-33/+4
|
* trying out isolating env variablesholger krekel2015-04-212-3/+45
|
* introduce new "platform" setting for toxholger krekel2015-04-202-0/+64
| | | | (XXX) consider using environment marker syntax
* - backout ability that --force-deps substitutes name/versions in1.9.2holger krekel2015-03-231-44/+0
| | | | | | | | | requirement files due to various issues. - This fixes issue228, fixes issue230, fixes issue231 which popped up with 1.9.1. - bump to 1.9.2 version
* Enhanced initproj fixture to accept a tuple for name/version specifier.Florian Schulze2015-03-201-2/+2
| | | | This allows projects with dashes in their name. This fixture is used in devpi where this functionality is needed.
* fix tests for "-m" virtualenv change of last commitholger krekel2015-03-111-2/+2
|
* Merged in sontek/tox/fix-force-dep-with-reqs-file-with-pip (pull request #136)holger krekel2015-03-091-0/+44
|\ | | | | | | Support force dependencies with requirements.txt using pip