blob: 3a4caf5754240aaa90ffb6d65ca6c8a4bd98afbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
[tox]
envlist = pyXX
[testenv]
deps=pytest
flake8
coverage
mock
sitepackages=True
usedevelop=True
commands=
python -m pytest {posargs}
[testenv:pyXX]
[testenv:pypyXX]
commands=
python -m pytest -k "not memusage" {posargs}
[testenv:coverage]
commands=
python -m pytest \
--cov=sqlalchemy {posargs}
python -m coverage xml --include=lib/sqlalchemy/*
[testenv:pep8]
commands = python -m flake8 {posargs}
[flake8]
show-source = True
ignore = E711,E712,E721,F841,F811
exclude=.venv,.git,.tox,dist,doc,*egg,build
|