summaryrefslogtreecommitdiff
path: root/tox.ini
Commit message (Collapse)AuthorAgeFilesLines
* Delete tox.iniDominic2021-07-191-61/+0
|
* Update tox.iniDominic2021-07-121-2/+26
| | | | Ignore flake8 E704 (Multiple statements on one line) too make overloads smaller Add [pytest] config section
* Update typing-extensions version in requirements.txtYobmod2021-06-231-1/+1
|
* add initial types to remote.pyyobmod2021-05-031-1/+10
|
* drop py3.4 supportyobmod2021-02-281-1/+1
|
* add python 3.9 supportyobmod2021-02-261-1/+1
|
* rebase on masteryobmod2021-02-261-1/+1
|
* drop python 3.4, update .gitignoreYobmod2021-02-241-1/+1
|
* Replace nose with unittest in tox configurationHarmon2020-02-171-2/+3
| | | | And directly use coverage.py
* Add support for Python 3.8Harmon2020-02-161-1/+1
|
* Remove python 2 from CISantos Gallegos2019-07-291-1/+1
| | | | Python 2 support was dropped, there is not need to run tests in py2
* try fix tests: Force Flake8 to like our codeSebastian Thiel2018-12-221-1/+1
| | | | | | | | | I actually tried to fix the W504/W503 errors, but failed ungracefully. Also there was no help online, nor was there something that would automatically fix it. No, I am not ever again spend time trying to pacify linters, they have to fix it automatically.
* Document support for Python 3.7Michael Käufl2018-10-211-1/+1
|
* Drop support for EOL Python 3.3Hugo2018-03-181-1/+1
|
* Drop support for EOL Python 2.6Hugo2018-03-181-1/+1
|
* Add Python 3.5 envVincent Driessen2016-04-141-1/+1
|
* Pass through the $HOME env var to the tox envVincent Driessen2016-04-141-0/+1
|
* Minor Flake8 fixes.Sebastian Thiel2015-02-091-1/+3
| | | | Latest version of it is required to show the issues travis shows as well
* Added advance usage examples to tutorial and made minor fixes.Sebastian Thiel2015-01-211-1/+2
| | | | | | GIT_PYTHON_TRACE would actually fail (now) if we debugged archive operations. Related to #239
* initial set of adjustments to make (most) imports work.Sebastian Thiel2015-01-041-1/+1
| | | | More to come, especially when it's about strings
* And apparently, I broken travis ... this should cure itSebastian Thiel2015-01-041-2/+1
|
* Removed unnecessary (non-gitpython) tests and fixed flake80.3.3Sebastian Thiel2015-01-041-1/+3
|
* Bumped version, updated changelog, reduced code smellSebastian Thiel2015-01-041-0/+2
| | | | | There is more work to do though, as many imports are still incorrect. Also, there are still print statements
* tox commands now have {posargs} as argumentAntoine Musso2014-11-141-3/+3
| | | | | | | | | | | | | | When invoking an environement, one might want to pass extra argument to the command. That is done in tox by invoking an env and passing the extra arguments after '--' which are then available as '{posargs}'. Examples: # Reports flake8 error statistics tox -eflake8 -- --statistics # Only run test_util.py tests, printing a line per test: tox -epy27 -- --verbose git/test/test_util.py
* tox env to easily run flake8Antoine Musso2014-07-251-1/+8
| | | | | | | | | | | | | | | | | | | | | | | Most people know about pep8 which enforce coding style. pyflakes goes a step beyond by analyzing the code. flake8 is basically a wrapper around both pep8 and pyflakes and comes with some additional checks. I find it very useful since you only need to require one package to have a lot of code issues reported to you. This patch provides a 'flake8' tox environement to easily install and run the utility on the code base. One simply has to: tox -eflake8 The env has been added to the default list of environement to have flake8 run by default. The repository in its current state does not pass checks but I noticed a pull request fixing pep8 issues. We can later easily ensure there is no regression by adjusting Travis configuration to run this env. More informations about flake8: https://pypi.python.org/pypi/flake8
* Use tox to easily run tests in venvAntoine Musso2014-07-251-0/+13
tox https://pypi.python.org/pypi/tox is a thin wrapper around virtualenv which let you craft a fresh python environement to execute command in. It creates the env with virtualenv, install dependencies, run python setup.py install in it and then execute whatever command you want it to do and report status. To do so I simply: - listed tests dependencies in test-requirements.txt (which are just nose and mock) - provide a tox.ini file which describe how to install the dependencies and execute nosetests - added the module 'coverage' to the list of test dependencies To run tests simply: pip install tox && tox That will execute the test command 'nosetests' using python2.6 and then python 2.7. The additional env 'cover' can be run using: tox -ecover.