Metadata-Version: 2.1
Name: tox-run-before
Version: 0.1
Summary: Tox plugin to run shell commands before the test environments are created.
Home-page: 
Author: Praekelt Consulting
Author-email: dev@praekelt.com
License: BSD
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content

Tox Run Before Plugin
=====================
**Tox plugin to run shell commands before the test environments are created.**

Installation
------------

#. Add ``tox-run-before`` to your Python path.

Usage
-----

A new ``run_before`` declaration is available under ``testenv`` sections.
Example::

    [testenv]
    run_before =
        echo Building Yarn
        yarn
        yarn build

