← Back to team overview

configglue team mailing list archive

[Merge] lp:~ricardokirkner/configglue/tox into lp:configglue

 

Ricardo Kirkner has proposed merging lp:~ricardokirkner/configglue/tox into lp:configglue.

Requested reviews:
  Configglue developers (configglue)

For more details, see:
https://code.launchpad.net/~ricardokirkner/configglue/tox/+merge/57483

This branch adds tox + config to test against multiple versions of Python.

Currently supported versions:
python2.5
python2.6
python2.7
python3.1
python3.2

To run the tests:

./tox
-- 
https://code.launchpad.net/~ricardokirkner/configglue/tox/+merge/57483
Your team Configglue developers is requested to review the proposed merge of lp:~ricardokirkner/configglue/tox into lp:configglue.
=== added file 'tox'
--- tox	1970-01-01 00:00:00 +0000
+++ tox	2011-04-13 13:02:37 +0000
@@ -0,0 +1,6 @@
+#!/usr/bin/env python
+import urllib
+url = "https://pytox.googlecode.com/hg/toxbootstrap.py";
+d = dict(__file__='toxbootstrap.py')
+exec urllib.urlopen(url).read() in d
+d['cmdline'](['--recreate'])

=== added file 'tox.ini'
--- tox.ini	1970-01-01 00:00:00 +0000
+++ tox.ini	2011-04-13 13:02:37 +0000
@@ -0,0 +1,5 @@
+[tox]
+envlist = py25,py26,py27,py31,py32
+
+[testenv]
+commands = nosetests


Follow ups