From ee8bb9f4f6417b7fc93b128e0ec2cff3697fd0d9 Mon Sep 17 00:00:00 2001 From: Greg Chapple Date: Thu, 27 Nov 2014 11:23:09 +0000 Subject: [PATCH] Updated contribution guide with correct tox env names --- CONTRIBUTING.rst | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index e6f2224..198da96 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -35,18 +35,19 @@ The previous command will run the tests in different combinations of Python the ``-l`` option:: $ tox -l - py26-1.5 - py26-1.6 - py27-1.5 - py27-1.6 - py32-1.5 - py32-1.6 - py33-1.5 - py33-1.6 + py27-django-17 + py27-django-master + py32-django-17 + py32-django-master + py33-django-17 + py33-django-master + py34-django-17 + py34-django-master + You can run each environment with the ``-e`` option:: - $ tox -e py27-1.6 # runs the tests only on Pyton 2.7 and Django 1.6.x + $ tox -e py27-django-17 # runs the tests only on Python 2.7 and Django 1.7.x Optionally you can also specify a country whose tests you want to run:: @@ -54,7 +55,7 @@ Optionally you can also specify a country whose tests you want to run:: And combine both options:: - $ COUNTRY=us tox -e py27-1.6 + $ COUNTRY=us tox -e py27-django-17 __ https://github.com/django/django-formtools/issues __ http://tox.readthedocs.org/en/latest/install.html