blob: f1885fcdc6f23fa8e5bb906f0d84c3a40827926d (
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
31
|
[tox]
envlist = qa, py35, py36
skip_missing_interpreters = True
[testenv]
usedevelop = True
deps =
flufl.testing
parameterized
nose2
head: git+https://gitlab.com/mailman/mailman.git
head: git+https://github.com/SecurityInnovation/PGPy
# Expects a mailman repo and PGPy repo in parent directory.
dev: -e../mailman
dev: -e../PGPy
commands =
python -m nose2 -v {posargs}
[testenv:qa]
basepython = python3
commands =
python -m flake8 src
deps =
flake8>3.0
flake8-import-order
[flake8]
jobs = 1
max-line-length = 79
import-order-style = google
application-import-names = mailman_pgp
|