diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-26 21:18:19 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-26 21:18:19 -0400 |
| commit | 35551841c522d8eb20f8e20243a5510de9d95dfc (patch) | |
| tree | be1a8699d4c2c366f1b598c1fa7590771069b60a /tox.ini | |
| parent | 41a8a853118309a28cffa2a1380a73b77d67a628 (diff) | |
| download | sqlalchemy-35551841c522d8eb20f8e20243a5510de9d95dfc.tar.gz | |
- reorganize tox options
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -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] |
