Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tox-dev/tox-travis
Seamless integration of tox into Travis CI
https://github.com/tox-dev/tox-travis
Last synced: 2 months ago
JSON representation
Seamless integration of tox into Travis CI
- Host: GitHub
- URL: https://github.com/tox-dev/tox-travis
- Owner: tox-dev
- License: mit
- Created: 2015-05-21T03:27:15.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-10-07T18:48:14.000Z (4 months ago)
- Last Synced: 2024-11-14T12:56:28.646Z (2 months ago)
- Language: Python
- Homepage: https://tox-travis.readthedocs.io
- Size: 157 KB
- Stars: 202
- Watchers: 12
- Forks: 34
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: docs/contributing.rst
- License: LICENSE
Awesome Lists containing this project
- starred-awesome - tox-travis - Seamless integration of tox into Travis CI (Python)
README
====================================
tox-travis: Integrate tox and Travis
====================================.. image:: https://img.shields.io/pypi/v/tox-travis.svg
:target: https://pypi.org/project/tox-travis/
:alt: Latest Version.. image:: https://readthedocs.org/projects/tox-travis/badge/?version=stable
:target: https://tox-travis.readthedocs.io/en/stable/?badge=stable
:alt: Documentation Status.. image:: https://travis-ci.org/tox-dev/tox-travis.svg?branch=master
:target: https://travis-ci.org/tox-dev/tox-travis.. image:: https://codecov.io/gh/tox-dev/tox-travis/branch/master/graph/badge.svg
:target: https://codecov.io/gh/tox-dev/tox-travis.. image:: https://badges.gitter.im/tox-dev/tox-travis.svg
:alt: Join the chat at https://gitter.im/tox-dev/tox-travis
:target: https://gitter.im/tox-dev/tox-travis?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badgetox-travis is a plugin for `tox `_ that simplifies the setup
between tox and Travis.Usage
=====Configure the Python versions to test with in ``.travis.yml``,
and install ``tox-travis`` with pip:.. code-block:: yaml
language: python
python:
- "3.6"
- "3.7"
install: pip install tox-travis
script: toxtox will only run the ``py36`` or ``py37`` env
(or envs that have a factor that matches)
as appropriate for the version of Python
that is being run by each Travis job.