~ubuntu-branches/ubuntu/wily/pyzmq/wily

« back to all changes in this revision

Viewing changes to tox.ini

  • Committer: Package Import Robot
  • Author(s): Julian Taylor
  • Date: 2013-02-24 19:23:15 UTC
  • mfrom: (1.2.1) (9 sid)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: package-import@ubuntu.com-20130224192315-qhmwp3m3ymk8r60d
Tags: 2.2.0.1-1
* New upstream release
* relicense debian packaging to LGPL-3
* update watch file to use github directly
  thanks to Bart Martens for the file
* add autopkgtests
* drop obsolete DM-Upload-Allowed
* bump standard to 3.9.4, no changes required

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Tox (http://tox.testrun.org/) is a tool for running tests
 
2
# in multiple virtualenvs. This configuration file will run the
 
3
# test suite on all supported python versions. To use it, "pip install tox"
 
4
# and then run "tox" from this directory.
 
5
 
 
6
[tox]
 
7
envlist = py26, py27, py32
 
8
 
 
9
[testenv]
 
10
changedir = .tox
 
11
commands =
 
12
    python -V
 
13
    python -c 'import zmq; print("pyzmq-%s" % zmq.pyzmq_version())'
 
14
    python -c 'import zmq; print("libzmq-%s" % zmq.zmq_version())'
 
15
    nosetests zmq.tests
 
16
deps =
 
17
    cython
 
18
    nose