summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-07-27 18:46:20 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-07-27 18:46:20 -0400
commit54592942c4a9c3d6d891519082555f8081026445 (patch)
tree29abeff4dee0960284e03558ff464ffbf41cc784 /tox.ini
parent35551841c522d8eb20f8e20243a5510de9d95dfc (diff)
downloadsqlalchemy-54592942c4a9c3d6d891519082555f8081026445.tar.gz
- add support for tags, including include/exclude support.
simplify tox again now that we can exclude tests more easily
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini13
1 files changed, 3 insertions, 10 deletions
diff --git a/tox.ini b/tox.ini
index 836831d31..aedd87a03 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = coverage, full, lightweight, memusage
+envlist = full
[testenv]
deps=pytest
@@ -17,19 +17,12 @@ envdir=pytest
[testenv:full]
-[testenv:memusage]
-commands=
- python -m pytest test/aaa_profiling/test_memusage.py {posargs}
-
-[testenv:lightweight]
-commands=
- python -m pytest -k "not memusage" {posargs}
-
[testenv:coverage]
commands=
python -m pytest \
--cov=lib/sqlalchemy \
- -k "not memusage" \
+ --exclude-tag memory-intensive \
+ --exclude-tag timing-intensive \
{posargs}
python -m coverage xml --include=lib/sqlalchemy/*