mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
Merge pull request #105 from RawToast/ci-integration
Integrate test suite with Travis CI and Coveralls
This commit is contained in:
commit
b80edee3c2
1 changed files with 14 additions and 0 deletions
14
.travis.yml
Normal file
14
.travis.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
language: python
|
||||
python:
|
||||
- "2.7"
|
||||
install:
|
||||
- sudo apt-get update
|
||||
- sudo apt-get install python-qt4 mplayer lame libportaudio2
|
||||
- pip install SQLAlchemy
|
||||
- pip install nose
|
||||
- pip install coveralls
|
||||
|
||||
script: nosetests ./tests --with-coverage --cover-package=./anki
|
||||
|
||||
after_success:
|
||||
- coveralls
|
Loading…
Reference in a new issue