Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

tox-dev/tox-travis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

de62ecd · Mar 14, 2019
Mar 14, 2019
Jan 13, 2019
Sep 21, 2018
Sep 14, 2018
Sep 14, 2018
Mar 14, 2019
Mar 14, 2019
May 21, 2015
Mar 14, 2019
Sep 14, 2018
Jun 6, 2017
Mar 14, 2019
Sep 14, 2018

Repository files navigation

tox-travis: Integrate tox and Travis

Latest Version Documentation Status https://travis-ci.org/tox-dev/tox-travis.svg?branch=master Join the chat at https://gitter.im/tox-dev/tox-travis

tox-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:

sudo: false
language: python
python:
  - "2.7"
  - "3.4"
install: pip install tox-travis
script: tox

tox will only run the py27 or py34 env (or envs that have a factor that matches) as appropriate for the version of Python that is being run by each Travis job.