forked from qtile/qtile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
64 lines (58 loc) · 1.59 KB
/
tox.ini
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tox]
skip_missing_interpreters = True
skipsdist=True
minversion = 1.8
envlist =
py27-trollius,
py33-trollius,
py33-tulip,
py34,
py35,
pypy-trollius,
pypy3-trollius,
py2-pep8,
py3-pep8,
py-nightly
packaging
[testenv]
# This is required in order to get UTF-8 output inside of the subprocesses
# that our tests use.
setenv = LC_CTYPE = en_US.UTF-8
# Pass Display down to have it for the tests available
passenv = DISPLAY TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
whitelist_externals = /bin/bash
# Install trollius for 2 and pypy
# Install either trollius or tulip for 3.3
# Asyncio is in the standard library for 3.4+
deps =
pytest-cov
coveralls
trollius: trollius
tulip: asyncio
commands =
# xcffib has to be installed before cairo
pip install xcffib
# Install unpinned requirements from requirements.in
pip install -r {toxinidir}/requirements.in
# build pangocffi module
bash -c "python -c 'import cffi, sys; sys.exit(cffi.__version_info__[0])' || python {toxinidir}/libqtile/ffi_build.py"
py.test --cov libqtile --cov-report term-missing
coveralls
[testenv:packaging]
deps =
check-manifest
readme_renderer
commands =
check-manifest
python setup.py check -m -r -s
[testenv:py2-pep8]
basepython = python2
deps = flake8
commands = flake8 {toxinidir}/libqtile {toxinidir}/bin/
[testenv:py3-pep8]
basepython = python3
deps = flake8
commands = flake8 {toxinidir}/libqtile {toxinidir}/bin/
[testenv:docs]
deps = -r{toxinidir}/docs/requirements.txt
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html