summaryrefslogtreecommitdiff
path: root/tox.ini
Commit message (Collapse)AuthorAgeFilesLines
* We've decided that python-3.5 is the minimum python version (#17270)Toshio Kuratomi2016-08-291-5/+1
|
* Start to test module_utils for python 3 syntax (#15882)Michael Scherer2016-05-171-2/+2
|
* Exclude the sample directory from testsToshio Kuratomi2016-05-111-4/+4
|
* Reorganizing tox stuff and making py3-specific requirementsJames Cammarata2016-03-111-1/+7
|
* Start a pyflakes section to cut down on extra messages that we don't agree ↵Toshio Kuratomi2015-11-111-0/+19
| | | | are problems
* Tox seems to not like the subsitution key for some reasonToshio Kuratomi2015-10-191-1/+2
|
* Simplify tox.ini, remove outdated commentMarius Gedminas2015-10-191-2/+1
|
* Enable unit tests on Python 3.4 in tox and TravisMarius Gedminas2015-10-161-1/+1
| | | | These now pass \o/
* Enable unit tests on Python 3.5Marius Gedminas2015-10-161-1/+1
| | | | | | | | | | | | This enables the tests in tox and in Travis. This ought to prevent regressions in Python 3 support. Note that Python 3.4 isn't supported (yet) because the vault code relies on %-formatting of byte strings, a feature that was ripped out of Python 3.0 and restored in 3.5. Also note that passing tests don't mean that Ansible itself can already be used with Python 3.5: test coverage is only 53%.
* Add Python 3.5 to tox.iniMarius Gedminas2015-10-041-2/+2
|
* Simplify tox.iniMarius Gedminas2015-10-041-17/+4
| | | | | | Use the factor-conditional settings feature of tox >= 1.8 to reduce duplication: https://tox.readthedocs.org/en/latest/config.html#factors-and-factor-conditional-settings
* Remove redundancies from tox.iniMarius Gedminas2015-10-041-8/+1
|
* Use print() as function under contrib/Marius Gedminas2015-08-281-3/+1
| | | | | This fixes the remaining Python 3 syntax errors, so re-enable compileall for contrib/ again.
* Enable py34 test in travis so we don't regress recent fixespy3-testToshio Kuratomi2015-08-271-2/+5
|
* Disable compileall test for contrib/ in tox -e py34Marius Gedminas2015-08-271-1/+1
| | | | | (This is supposed to be temporary, until the code under contrib/ gets cleaned up from all the remaining print statements.)
* Use 'except ... as' syntaxMarius Gedminas2015-08-271-1/+1
| | | | | | This syntax works on Python 2.6 through 3.x. lib/ansible/module_utils (and lib/ansible/modules) need to support Python 2.4, so I didn't touch those.
* Better way to stop tox running on unwanted directoriesToshio Kuratomi2015-08-271-3/+3
|
* Don't compile .py files under .tox/Marius Gedminas2015-08-261-3/+3
| | | | | | | 'tox -e py26' would fail for me because python -m compileall would crawl under .tox/py27 and, unsurprisingly, get SyntaxErrors on files from the Python 2.7 standard library using syntax features not supported by Python 2.6.
* Push python2.4 check into travisToshio Kuratomi2015-07-311-2/+3
|
* Undo previous travis/tox fixes and fix underlying issueJames Cammarata2015-07-311-2/+2
|
* Updating tox script tooJames Cammarata2015-07-311-2/+2
|
* dont check vagrant inventory script for 2.6Brian Coca2015-07-211-1/+1
|
* Correct typoToshio Kuratomi2015-06-111-1/+1
|
* Testing additions and fixesMatt Martz2015-05-081-14/+22
| | | | | | * Fix import pathing for units.mock * Add some additional requirements * Use compileall to test compatiblity with different python versions
* Move command for v1 back into testenv so that we have a defaultToshio Kuratomi2015-04-141-2/+4
| | | | | (We have a jenkins build that creates a [testenv:jenkins] so it needs there to be a default value
* Updated the tox.ini file to run multiple ansible versions.Rory Finnegan2015-04-141-1/+15
| | | | | | Purpose: so that devs can use tox to run v1 or v2 of ansible with various versions of python. For example `tox -e py27-v2 will run python2.7 on v2. Currently, only py26 and py27 are run on v1 when running just `tox` so that we aren't breaking builds.
* Add tox and travis-ci supportJames Laska2015-03-131-0/+7
Add tox integration to run unittests in supported python releases. Travis-CI is used for test execution. Additionally, the unittest TestQuotePgIdentifier was updated to support using assert_raises_regexp on python-2.6. Sample travis-ci output available at https://travis-ci.org/ansible/ansible/builds/54189977