Reputation: 1438
I'm trying to get my first Travis CI Build to run with a Python setup but the build get the status of #Errored and the simple Travis interface is leaving me without any help as to why. I've followed:
Validated my .travis.yml:
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
# does not have headers provided, please ask https://launchpad.net/~pypy/+archive/ppa
# maintainers to fix their pypy-dev package.
- "pypy"
# command to install dependencies
install:
- pip install .
- pip install -r requirements.txt
I can't find any troubleshoot guide any similar resource to investigate why it doesn't work, how to I get any information about why the build is failing?
Upvotes: 1
Views: 157
Reputation: 1955
Your build jobs details + logs shows that you got invalid requirements for python 3.2 and 3.3.
Notice that for the others stacks (ex pypy) your requirements are ok, and related jobs are green.
Either review your requirements list or remove stack "3.2" and "3.3" if it's not mandatory for your context.
Upvotes: 0
Reputation: 511
As far as a trouble shooting guide, the docs are the closest thing: http://docs.travis-ci.com/. The IRC channel is another option as well.
Upvotes: 1