~hloeung/ubuntu-repository-cache/fix-initial-sync-permissions

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
[tox]
envlist = lint,py3
skipsdist = True

[testenv]
setenv =
    PYTHONPATH = {toxinidir}
deps =
    pyyaml
    nose
    flake8
    mock
    ipdb
    coverage
    backoff==1.4.0
commands=
    nosetests -v --with-coverage -s lib/ubuntu_repository_cache --ignore-files=vendor/*

[testenv:lint]
deps=
    flake8
commands=
    flake8 --exclude=o2lib lib/ubuntu_repository_cache

[flake8]
max-line-length = 120
max-complexity = 14