I use Travis CI to create my Python project. I would like to test my project on different versions of Python, but then there is a script that runs only if all of them are successful.
For example, this travis.yml does not do the job, since the after_success part is run after each Python build:
language: python python: - '2.7' - '3.2' script: - python setup.py test after_success: -
Is there any way to do this?
python travis-ci
thomson_matt
source share