/tox-run-before

Tox plugin to run shell commands before the test environments are created

Primary LanguagePythonBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

Tox Run Before Plugin

Tox plugin to run shell commands before the test environments are created.

Installation

  1. 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