Skip to content

Commit 0590e54

Browse files
committed
Add tox runner with a handful of basic jobs
1 parent 25323f5 commit 0590e54

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed

.bandit.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
skips:
2+
- B603 # Ignore warnings about calling subprocess.Popen without shell=True
3+
- B607 # Ignore warnings about calling subprocess.Popen without a full path to executable

CHANGES.txt

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Revision 0.3.0, released XX-03-2020
33
-----------------------------------
44

55
- Added support for Python 3.8.
6+
- Added tox runner with a handful of basic jobs
67
- Add RFC3125 providing Electronic Signature Policies
78
- Add RFC5126 providing CMS Advanced Electronic Signatures (CAdES)
89
- Removed support for EOL Pythons 2.4, 2.5, 2.6, 3.2, 3.3 and 3.4.

tox.ini

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
[tox]
2+
minversion = 3.4.0
3+
envlist = unittest, bandit, build
4+
5+
[testenv]
6+
basepython = python3
7+
usedevelop = True
8+
setenv =
9+
VIRTUAL_ENV={envdir}
10+
PYTHONWARNINGS=default::DeprecationWarning
11+
install_command = pip install {opts} {packages}
12+
13+
[testenv:unittest]
14+
deps =
15+
discover
16+
-r{toxinidir}/requirements.txt
17+
commands = discover -s examples/pyasn1_modules-example-switch/tests -s tests
18+
19+
[testenv:cover]
20+
setenv =
21+
{[testenv]setenv}
22+
PYTHON=coverage run --parallel-mode
23+
deps =
24+
coverage
25+
discover
26+
commands = coverage erase
27+
coverage run --source pyasn1_modules -m unittest discover {posargs}
28+
coverage report --fail-under 80
29+
30+
[testenv:bandit]
31+
skip_install = true
32+
deps =
33+
bandit
34+
commands =
35+
bandit -r pyasn1_modules -c .bandit.yml
36+
37+
[testenv:build]
38+
skip_install = true
39+
deps =
40+
wheel
41+
setuptools
42+
commands =
43+
python setup.py -q sdist bdist_wheel

0 commit comments

Comments
 (0)