Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/msabramo/travis2tox
Convert a .travis.yml file for a Python project to a tox.ini file
https://github.com/msabramo/travis2tox
Last synced: 28 days ago
JSON representation
Convert a .travis.yml file for a Python project to a tox.ini file
- Host: GitHub
- URL: https://github.com/msabramo/travis2tox
- Owner: msabramo
- Created: 2012-10-06T00:40:38.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2012-10-06T06:34:22.000Z (about 12 years ago)
- Last Synced: 2024-11-21T00:50:51.481Z (about 1 month ago)
- Language: Python
- Size: 148 KB
- Stars: 13
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
travis2tox
==========.. image:: https://secure.travis-ci.org/msabramo/travis2tox.png
:target: http://travis-ci.org/msabramo/travis2toxFor a Python project, take a ``.travis.yml`` file (`Travis CI`_) and output a
``tox.ini`` file (`Tox`_).Example
-------::
$ cat .travis.yml
language: pythonpython:
- 2.6
- 2.7
- 3.2
- pypyscript: python setup.py test
$ travis2tox .travis.yml
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.[tox]
envlist = py26, py27, py32, pypy[testenv]
commands = python setup.py test.. _Travis CI: http://travis-ci.org/
.. _Tox: http://tox.testrun.org/