← Back to team overview

python-jenkins-developers team mailing list archive

[Merge] lp:~msabramo/python-jenkins/add_tox into lp:python-jenkins

 

You have been requested to review the proposed merge of lp:~msabramo/python-jenkins/add_tox into lp:python-jenkins.

For more details, see:
https://code.launchpad.net/~msabramo/python-jenkins/add_tox/+merge/214442

This adds support for tox.

```
$ tox
...
  py26: commands succeeded
  py27: commands succeeded
  pypy: commands succeeded
  congratulations :)
```

-- 
https://code.launchpad.net/~msabramo/python-jenkins/add_tox/+merge/214442
Your team Python Jenkins Developers is requested to review the proposed merge of lp:~msabramo/python-jenkins/add_tox into lp:python-jenkins.
=== added file '.bzrignore'
--- .bzrignore	1970-01-01 00:00:00 +0000
+++ .bzrignore	2014-04-07 17:06:15 +0000
@@ -0,0 +1,8 @@
+.tox
+MANIFEST
+*.egg-info
+*.egg
+*.pyc
+__pycache__
+build
+dist

=== added file 'tox.ini'
--- tox.ini	1970-01-01 00:00:00 +0000
+++ tox.ini	2014-04-07 17:06:15 +0000
@@ -0,0 +1,13 @@
+# Tox (http://tox.testrun.org/) is a tool for running tests
+# in multiple virtualenvs. This configuration file will run the
+# test suite on all supported python versions. To use it, "pip install tox"
+# and then run "tox" from this directory.
+
+[tox]
+envlist = py26, py27, pypy
+
+[testenv]
+deps =
+    mock
+    pytest
+commands = py.test tests