Metadata-Version: 2.1
Name: ttrun
Version: 1.0.5.dev4
Summary: Simple CLI to run testtools tests
Home-page: https://opendev.org/inaugust/ttrun
Author: Monty Taylor
Author-email: mordred@inaugust.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
License-File: LICENSE
Requires-Dist: pbr (>=1.6)
Requires-Dist: testtools

=====
ttrun
=====

Simple CLI to run testtools tests

In a `testrepository` based workflow, sometimes you want/need to run individual
tests. Additionally, someitmes you want to use a pre-existing tox or nox virtualenv
to do so. Or, at least, I do.

Typing

.. code-block:: bash

  .nox/py27/bin/python -m testtools.run some.test

Got boring. So this is a simple wrapper.

It has two modes.

.. code-block:: bash

  ttrun some.test

Will run that test with the system python.

If you want to re-use a nox virtualenv.

.. code-block:: bash

  ttrun -epy27 some.test

Will run some.test in the given nox venv.

Both modes can be run with no parameters to have testtools run all the tests.



