summaryrefslogtreecommitdiff
path: root/tox.ini
blob: e8d8889e66371e24754c591f9555e87a43e2a9d3 (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
[tox]
envlist = py26, py27, py33, py34, py35

[testenv]
# fontforge bindings cannot be installed from pip, so they may only be
# available system-wide
sitepackages = True
deps =
    pillow
    six
    pytest
commands = py.test {posargs:scss/tests}


[testenv:py26]
deps =
    {[testenv]deps}
    enum34

[testenv:py27]
deps =
    {[testenv]deps}
    enum34

[testenv:py33]
deps =
    {[testenv]deps}
    enum34