blob: ca97a51ecbd9f779162296c6cffbff365319dcaa (
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
29
30
|
[tox]
envlist = py27-{noaccel,accel},py{33,34,35}
skipsdist=True
[testenv]
deps =
mako
numpy
six
nose
commands = nosetests generated_tests/test_generators.py
[testenv:py27-noaccel]
passenv=HOME
deps =
mako
nose
coverage
commands = nosetests framework/tests --attr="!privliged" --with-cover --cover-package=framework --cover-tests
[testenv:py27-accel]
passenv=HOME
deps =
mako
nose
coverage
simplejson
lxml
backports.lzma
commands = nosetests framework/tests --attr="!privliged" --with-cover --cover-package=framework --cover-tests
|