← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] lp:~cjwatson/python-oops-wsgi/tox into lp:python-oops-wsgi

 

Colin Watson has proposed merging lp:~cjwatson/python-oops-wsgi/tox into lp:python-oops-wsgi.

Commit message:
Add tox testing support.

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~cjwatson/python-oops-wsgi/tox/+merge/402759
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~cjwatson/python-oops-wsgi/tox into lp:python-oops-wsgi.
=== modified file '.bzrignore'
--- .bzrignore	2018-03-10 20:54:21 +0000
+++ .bzrignore	2021-05-14 11:49:31 +0000
@@ -1,12 +1,6 @@
 __pycache__
-./eggs/*
-./.installed.cfg
-./develop-eggs
-./bin
 ./oops_wsgi.egg-info
-./parts
-./eggs
-./download-cache
 ./dist
 ./MANIFEST
 ./.testrepository
+./.tox

=== modified file 'NEWS'
--- NEWS	2018-05-08 10:35:44 +0000
+++ NEWS	2021-05-14 11:49:31 +0000
@@ -3,6 +3,11 @@
 
 Changes and improvements to oops-wsgi, grouped by release.
 
+NEXT
+----
+
+* Add tox testing support. (Colin Watson)
+
 0.0.14
 ------
 

=== removed file 'bootstrap.py'
=== removed file 'buildout.cfg'
=== added file 'tox.ini'
--- tox.ini	1970-01-01 00:00:00 +0000
+++ tox.ini	2021-05-14 11:49:31 +0000
@@ -0,0 +1,9 @@
+[tox]
+envlist =
+    py27,py35,py36,py37,py38,py39
+
+[testenv]
+commands =
+    unit2 discover -s oops_wsgi
+deps =
+    .[test]

=== removed file 'versions.cfg'