How to test a project with multiple python versions in a sequential way?
- by ecolell
I am developing a python adapter to interact with a 3rd party website, without any json or xml api (http://www.class.noaa.gov/).
I have a problem when Travis CI run multiple python tests (of the The Travis CI Build Matrix) concurrently.
The project is on GitHub at ecolell/noaaclass and the .travis.yml file is:
language: python
python:
- "2.6"
…