summaryrefslogtreecommitdiff
path: root/tox/_quickstart.py
Commit message (Collapse)AuthorAgeFilesLines
* fix PEP8 violationsVladimir Vitvitskiy2015-04-231-4/+13
| | | | | | | * 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
* Add support for 'py35' -> 'python3.5'.Tres Seaver2015-02-161-1/+1
|
* tox-quickstart: Add py34Marc Abramowitz2014-04-251-1/+1
|
* drop Python2.5 compatibility because it became too hard dueholger krekel2013-12-091-1/+1
| | | | | to the setuptools-2.0 dropping support. tox now has no support for creating python2.5 virtualenv environments anymore.
* clarify we want test dependencies, not app dependencies.holger krekel2013-11-271-2/+2
|
* rtrim lines in generated fileholger krekel2012-11-251-7/+14
|
* tox-quickstart: Prompt before overwriting an existing tox.ini file.Marc Abramowitz2012-11-241-11/+15
|
* Add link to http://tox.testrun.org/latest/config.html at end ofMarc Abramowitz2012-11-231-1/+1
| | | | tox-quickstart output.
* Change print() statements in tox/_quickstart.py so that they printMarc Abramowitz2012-11-231-3/+3
| | | | blank line instead of "()" in Python 2.
* Changed the Python version selection so that there are a bunch ofMarc Abramowitz2012-11-231-4/+22
| | | | | pre-canned choices so that you can quickly pick one and not have to answer a yes/no question 10 times
* Make tests in TestToxQuickstart more realistic by having them call ↵Marc Abramowitz2012-11-221-1/+1
| | | | tox._quickstart.process_input
* Automatically add "twisted" to deps when the selected test runner is trial.Marc Abramowitz2012-11-221-0/+2
|
* Automatically add "nose" to deps when the selected test runner is nosetestsMarc Abramowitz2012-11-221-0/+2
|
* Automatically add "pytest" to deps when the selected test runner is py.testMarc Abramowitz2012-11-221-1/+5
|
* Tweaks to make tox-quickstart (tox/_quickstart.py) andMarc Abramowitz2012-11-221-19/+20
| | | | tests/test_quickstart.py work with Python 3.x
* Move logic that does processing of the input into a separateMarc Abramowitz2012-11-221-2/+10
| | | | | | process_input function. This should make it easier to test this logic in isolation later.
* Add `py.test` as example test runner command.Marc Abramowitz2012-11-221-0/+1
|
* Make the default test command `{envpython} setup.py test` instead ofMarc Abramowitz2012-10-151-1/+1
| | | | `python setup.py test`.
* Add a comment block to the generated `tox.ini` file with info on tox.Marc Abramowitz2012-10-151-0/+5
|
* Modify comment block to credit `sphinx-quickstart` and include theMarc Abramowitz2012-10-151-2/+34
| | | | Sphinx (BSD) license.
* Add a `tox-quickstart` command that asks a few questions and thenMarc Abramowitz2012-10-151-0/+182
generates a simple `tox.ini` file to help users get started with tox more easily.