~duplicity-team/duplicity/0.7-series

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
[tox]
envlist=py26,py27,lpbuildd-precise

[testenv:py26]
setenv=
    RUN_CODE_TESTS=0
deps=
    mock==0.7.2
    pexpect==2.4
    ptyprocess==0.4
    unittest2

[testenv:py27]
setenv=
    RUN_CODE_TESTS=1
deps=
    mock
    pexpect

[testenv:lpbuildd-precise]
setenv=
    RUN_CODE_TESTS=0
deps=
    mock==0.7.2
    pexpect==2.4

[testenv]
commands=
    {envpython} {toxinidir}/setup.py test {posargs}

[pep8]
ignore=E402,E501,E731,W503
max-line-length=120