forked from pinterest/pymemcache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
31 lines (26 loc) · 738 Bytes
/
tox.ini
File metadata and controls
31 lines (26 loc) · 738 Bytes
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
[tox]
envlist = py27, py34, py35, py36, pypy, pypy3, py27-flake8, py36-flake8, integration
skip_missing_interpreters = True
[testenv]
commands =
pip install -r test-requirements.txt
pip install -e .
py.test {posargs:pymemcache/test/}
[testenv:integration]
commands =
pip install -r test-requirements.txt
pip install -e .
py.test {posargs:pymemcache/test/ -m integration}
[testenv:py27-flake8]
commands =
pip install flake8
flake8 pymemcache/
[testenv:py36-flake8]
commands =
pip install flake8
flake8 pymemcache/
[testenv:docs]
commands =
pip install -r docs-requirements.txt -r test-requirements.txt
sphinx-apidoc -o docs/apidoc/ pymemcache
sphinx-build -b html docs/ docs/_build