Merge ~cjwatson/git-build-recipe:tox into git-build-recipe:master

Proposed by Colin Watson
Status: Merged
Merged at revision: c39d7009fb281e1fbf1ce0afea5c12a5f6394bb4
Proposed branch: ~cjwatson/git-build-recipe:tox
Merge into: git-build-recipe:master
Diff against target: 32 lines (+17/-0)
2 files modified
.gitignore (+1/-0)
tox.ini (+16/-0)
Reviewer Review Type Date Requested Status
Jürgen Gmach Approve
Review via email: mp+415680@code.launchpad.net

Commit message

Add tox configuration

To post a comment you must log in.
Revision history for this message
Jürgen Gmach (jugmac00) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1diff --git a/.gitignore b/.gitignore
2index bfd5cdf..5ff083a 100644
3--- a/.gitignore
4+++ b/.gitignore
5@@ -1,4 +1,5 @@
6 *.egg-info
7 *.pyc
8 .pybuild
9+.tox
10 __pycache__
11diff --git a/tox.ini b/tox.ini
12new file mode 100644
13index 0000000..f990d65
14--- /dev/null
15+++ b/tox.ini
16@@ -0,0 +1,16 @@
17+[tox]
18+envlist =
19+ py36
20+ py37
21+ py38
22+ py39
23+ py310
24+skip_missing_interpreters =
25+ true
26+
27+[testenv]
28+deps =
29+ .[test]
30+ pytest
31+commands =
32+ pytest {posargs}

Subscribers

People subscribed via source and target branches