aboutsummaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2014-11-14 16:10:26 +0100
committerSebastian Thiel <byronimo@gmail.com>2014-11-14 16:15:31 +0100
commitc914637ab146c23484a730175aa10340db91be70 (patch)
treed40ad34a07acdaab828f82ff05029f897bb20bc9 /tox.ini
parente1ad78eb7494513f6c53f0226fe3cb7df4e67513 (diff)
parentd43055d44e58e8f010a71ec974c6a26f091a0b7a (diff)
downloadGitPython-c914637ab146c23484a730175aa10340db91be70.tar.gz
GitPython-c914637ab146c23484a730175aa10340db91be70.zip
Merge branch 'tox' of https://github.com/hashar/GitPython into hashar-tox
Conflicts: README.md requirements.txt setup.py
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini20
1 files changed, 20 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 00000000..60bfb1d9
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,20 @@
+[tox]
+envlist = py26,py27,flake8
+
+[testenv]
+commands = nosetests
+deps = -r{toxinidir}/requirements.txt
+ -r{toxinidir}/test-requirements.txt
+
+[testenv:cover]
+commands = nosetests --with-coverage
+
+[testenv:flake8]
+commands = flake8
+
+[testenv:venv]
+commands = {posargs}
+
+[flake8]
+#show-source = True
+exclude = .tox,.venv,build,dist,doc,git/ext/