File: tox.ini

package info (click to toggle)
python-pyscss 1.4.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,340 kB
  • sloc: python: 12,642; ansic: 1,550; makefile: 146; sh: 6
file content (28 lines) | stat: -rw-r--r-- 411 bytes parent folder | download | duplicates (3)
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