File: tox.ini

package info (click to toggle)
python-pymemcache 1.3.2-2~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 284 kB
  • sloc: python: 2,244; makefile: 34
file content (19 lines) | stat: -rw-r--r-- 412 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[tox]
envlist = py26, py27, pypy, pypy3, py33, py34, docs, flake8

[testenv]
commands =
    pip install -r test-requirements.txt
    pip install -e .
    py.test {posargs}

[testenv:flake8]
commands =
	pip install flake8
	flake8 .

[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