tox-dev / tox-travis

Seamless integration of tox into Travis CI
https://tox-travis.readthedocs.io
MIT License
202 stars 34 forks source link

Question: any simple way to just run each tox environment in a separate jobs? #153

Closed janluke closed 3 years ago

janluke commented 3 years ago

Let's say I have the following tox environments:

[tox]
envlist =
    py{36,37,38}
    py39-django{17,18}
    lint
    mypy

I want to run each of them in a separate job. I know how to do it without using tox-travis (here a random example) and I wonder if tox-travis makes it any easier.

ryanhiebert commented 3 years ago

If you're already setting TOXENV anyway, which is what tox-travis does internally, there may not be much that this library gets you.

janluke commented 3 years ago

Ok, thank you.