diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-27 18:46:20 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-27 18:46:20 -0400 |
| commit | 54592942c4a9c3d6d891519082555f8081026445 (patch) | |
| tree | 29abeff4dee0960284e03558ff464ffbf41cc784 /tox.ini | |
| parent | 35551841c522d8eb20f8e20243a5510de9d95dfc (diff) | |
| download | sqlalchemy-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.ini | 13 |
1 files changed, 3 insertions, 10 deletions
@@ -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/* |
