Skip to content
This repository has been archived by the owner on May 24, 2018. It is now read-only.

Commit

Permalink
Merge f5a751e into 2b34324
Browse files Browse the repository at this point in the history
  • Loading branch information
campos-ddc committed Feb 8, 2016
2 parents 2b34324 + f5a751e commit de5b02e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
language: python

python:
- "2.7"
# - "pypy" Not all tests are working yet

env:
- TEST_TARGET=master
- TEST_TARGET=slave

before_install:
- sudo apt-get -qq update
- sudo apt-get install libsasl2-dev libmysqlclient-dev libldap2-dev libssl-dev python-dev

install:
- "pip install -e $TEST_TARGET"
- "pip install -v mock==1.0.1"
- "pip install -v pyflakes"
- "pip install -v coveralls"

script: if [ "$TEST_TARGET" = "master" ]; then coverage run `which trial` buildbot ; else coverage run `which trial` buildslave ; fi

after_success:
- coveralls

0 comments on commit de5b02e

Please sign in to comment.