Sefa
Sefa

Reputation: 8992

Travis can't find my travis.yml file

I have .travis.yml file at root directory of my repo but Travis-Ci keeps giving me message:

Could not find .travis.yml, using standard configuration.

I don't know if it's important in my case but in my .travis.yml file:

language: python
python:
  - "2.7"
# command to install dependencies
install: "pip install -r requirements.txt"
script: nosetests

Here is my travis link: https://travis-ci.org/vgSefa/pBlog

Upvotes: 4

Views: 2310

Answers (1)

Sefa
Sefa

Reputation: 8992

After little bit more research and trying problem solved by itself.

I pushed some code changes and suddenly travis found my .travis.yml file. So, where is no solution, you keep working and travis fill be fine in time.

I also sent a mail to travis support, i might fix this if this is really a bug.

Upvotes: 2

Related Questions