summaryrefslogtreecommitdiff
path: root/doc/example/nose.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/example/nose.txt')
-rw-r--r--doc/example/nose.txt41
1 files changed, 0 insertions, 41 deletions
diff --git a/doc/example/nose.txt b/doc/example/nose.txt
deleted file mode 100644
index ec97f18..0000000
--- a/doc/example/nose.txt
+++ /dev/null
@@ -1,41 +0,0 @@
-
-nose and tox
-=================================
-
-It is easy to integrate `nosetests`_ runs with tox.
-For starters here is a simple ``tox.ini`` config to configure your project
-for running with nose:
-
-Basic nosetests example
---------------------------
-
-Assuming the following layout::
-
- tox.ini # see below for content
- setup.py # a classic distutils/setuptools setup.py file
-
-and the following ``tox.ini`` content::
-
- [testenv]
- deps=nose
- commands=
- nosetests \
- [] # substitute with tox' positional arguments
-
-you can invoke ``tox`` in the directory where your ``tox.ini`` resides.
-``tox`` will sdist-package your project create two virtualenv environments
-with the ``python2.6`` and ``python2.5`` interpreters, respectively, and will
-then run the specified test command.
-
-
-More examples?
-------------------------------------------
-
-You can use and combine other features of ``tox`` with your tox runs,
-e.g. :ref:`sphinx checks`. If you figure out some particular configurations
-for nose/tox interactions please submit them.
-
-Also you might want to checkout :doc:`general`.
-
-.. include:: ../links.txt
-