Skip to main content

Use externally created wheels with Tox

Project description

Latest version on PyPi Supported Python versions Build Status Documentation status Downloads Code style: black

tox-external-wheels

Use externally created wheels with Tox

Features

  • The ability to define external wheel files to tests in the tox config (example tox.ini file):
[tox]
envlist = py-{a,b,c}
[testenv]
external_wheels =
    a: {toxinidir}/dist/*py27*.whl
    b: {toxinidir}/dist/*py37*.whl
commands =
    a,b: pytest test
    c: pip list

Or defined in a command line argument

tox -e 'py-{a,b,c}' --external_wheels 'a:dist/*py27*.whl;b:dist/*py37*.whl'

Notes: In this case py-c falls back to installing from source. tox-external_wheels now supports ! in env names

  • The ability to define an external command to build wheel(s) with (example tox.ini file):
[tox]
envlist = py-{a,b,c}
[testenv]
external_build=
    ./prepare_build.sh
    ./build.sh
external_wheels =
    {toxinidir}/dist/*.whl
commands =
    a,b: pytest test
    c: pip list

Or defined in a command line argument

tox -e 'py-{a,b,c}' --external_build './build.sh'

Note: if command exits with non-zero return code, error will be reported and exception will be raised.

  • Support installing dependencies from external wheel files by adding their name into the external_wheels in config
[tox]
envlist = py-{a,b,c}
[testenv]
deps = six
external_wheels =
    a: {toxinidir}/dist/*py27*.whl (six: six-*.whl[optional_extra])
    b: {toxinidir}/dist/*py37*.whl
commands =
    a,b: pytest test
    c: pip list

Or defined in a command line argument

tox -e 'py-{a,b,c}' --external_wheels 'a:dist/*py27*.whl (six: six-*.whl[optional_extra]);b:/dist/*py37*.whl'

Requirements

  • tox

Installation

You can install "tox-external-wheels" via pip from PyPI:

pip install tox-external-wheels

Usage

Use the external_wheel option. Like shown in usage

Contributing

Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.

License

Distributed under the terms of the MIT license, tox-external-wheels is free and open source software.

Issues

If you encounter any problems, please file an issue along with a detailed description.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tox-external-wheels-0.1.7.tar.gz (27.5 kB view hashes)

Uploaded Source

Built Distribution

tox_external_wheels-0.1.7-py2.py3-none-any.whl (7.1 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page