~ed.so/duplicity/remove_copyCom

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=py26,py27

[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]
commands=
    {envpython} {toxinidir}/setup.py test {posargs}

[pep8]
ignore=E402,E501,E731,W503
# E402 module level import not at top of file
# E501 line too long (82 > 79 characters)
# E731 do not assign a lambda expression, use a def
# W503 line break occurred before a binary operator
max-line-length=120