summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-07-26 21:18:19 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-07-26 21:18:19 -0400
commit35551841c522d8eb20f8e20243a5510de9d95dfc (patch)
treebe1a8699d4c2c366f1b598c1fa7590771069b60a /tox.ini
parent41a8a853118309a28cffa2a1380a73b77d67a628 (diff)
downloadsqlalchemy-35551841c522d8eb20f8e20243a5510de9d95dfc.tar.gz
- reorganize tox options
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini14
1 files changed, 10 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index 3a4caf575..836831d31 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = pyXX
+envlist = coverage, full, lightweight, memusage
[testenv]
deps=pytest
@@ -12,19 +12,25 @@ usedevelop=True
commands=
python -m pytest {posargs}
+envdir=pytest
+[testenv:full]
-[testenv:pyXX]
+[testenv:memusage]
+commands=
+ python -m pytest test/aaa_profiling/test_memusage.py {posargs}
-[testenv:pypyXX]
+[testenv:lightweight]
commands=
python -m pytest -k "not memusage" {posargs}
[testenv:coverage]
commands=
python -m pytest \
- --cov=sqlalchemy {posargs}
+ --cov=lib/sqlalchemy \
+ -k "not memusage" \
+ {posargs}
python -m coverage xml --include=lib/sqlalchemy/*
[testenv:pep8]