Metadata-Version: 1.1
Name: tox-travis
Version: 0.2
Summary: Seamless integration of Tox into Travis CI
Home-page: https://github.com/ryanhiebert/tox-travis
Author: Ryan Hiebert
Author-email: ryan@ryanhiebert.com
License: MIT
Description: =====================================
        tox-travis: Integrate Tox into Travis
        =====================================
        
        tox-travis is a simple plugin for tox that allows you to use
        Travis CI's multiple python version feature as well as tox's
        full configurability in a straightforward way.
        
        
        Usage
        =====
        
        Configure the Python versions to test with in ``travis.yml``:
        
        .. code-block::
        
            sudo: false
            language: python
            python:
              - "2.7"
              - "3.4"
            install: pip install tox-travis
            script: tox
        
        And it will run the appropriate testenvs,
        which by default are any declared env with
        ``py27`` or ``py34`` as factors of the name.
        If no environments match a given factor,
        the ``py27`` or ``py34`` envs are used as a fallback.
        
        
        Advanced Configuration
        ======================
        
        To customize what environments tox will run on Travis,
        add a section to ``tox.ini`` telling it what environments
        to run under which versions of Python:
        
        .. code-block:: ini
        
            [tox]
            envlist = py{27,34}-django{17,18}, docs
        
            [tox:travis]
            2.7 = py27
            3.4 = py34, docs
        
        This would run the Python 2.7 variants under 2.7,
        and the Python 3.4 variants and the ``docs`` env under 3.4.
        
        Note that Travis won't run all the envs simultaneously,
        because it's build matrix is only aware of the Python versions.
        Only one Travis build will be run per Python version,
        unless other settings are sepecified in the Travis build matrix.
        
        
        0.2 (2015-12-10)
        ++++++++++++++++
        
        * Choose testenvs from ``tox.ini`` by matching factors.
        
          * This is a slightly *backward incompatible* change
          * If a Python version isn't declared in the ``tox.ini``,
            it may not be run.
          * Additional envs may be run if they also match the factors,
            for example, ``py34-django17`` and ``py34-django18`` will
            both match the default for Python 3.4 (``py34``).
          * Factor matching extends to overrides set in ``tox.ini``.
        
        
        0.1 (2015-05-21)
        ++++++++++++++++
        
        * Initial Release
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
