mirror of
https://github.com/ankitects/anki.git
synced 2025-12-10 13:26:56 -05:00
14 lines
302 B
YAML
14 lines
302 B
YAML
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
|