Skip to content

Commit

Permalink
Setup Travis to run actual tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeboers committed Oct 29, 2013
1 parent 8d078e8 commit 889c258
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ env:
- LIBRARY=ffmpeg
- LIBRARY=libav

before_install: ./.travis-setup
install: pip install --use-mirrors cython
before_install:
- ./.travis-setup
- pip install --use-mirrors cython nosetests

# Currently only building, not testing.
script: make build
install:
- make build

script:
- nosetests
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[nosetests]
verbosity = 2
logging-clear-handlers = 1

0 comments on commit 889c258

Please sign in to comment.