Skip to content

Commit

Permalink
First attempt to configure Travis to build bakefile correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
vadz committed Apr 26, 2013
1 parent da2bd1b commit dfe21ac
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .travis.yml
@@ -0,0 +1,24 @@
# .travis.yml
# Configure Travis CI service to build bakefile
#
language: python
python:
- "2.6"
- "2.7"

before_install:
- "git submodule update --init --recursive"

install:
- "pip install Sphinx"
- "pip install pytest"
- "pip install clint"

script: "make test"

notifications:
email:
recipients:
- vz-bakefile@zeitlins.org
on_success: change # [always|never|change] # default: change
on_failure: always # [always|never|change] # default: always

0 comments on commit dfe21ac

Please sign in to comment.