2015-03-13 08:59:10 +05:30
|
|
|
# After changing this file, check it on:
|
|
|
|
# http://lint.travis-ci.org/
|
|
|
|
|
|
|
|
|
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- 3.3
|
2015-03-13 18:39:34 +05:30
|
|
|
- 3.4
|
2015-03-13 08:59:10 +05:30
|
|
|
|
|
|
|
install:
|
|
|
|
- time sudo apt-get update
|
2015-03-13 18:39:34 +05:30
|
|
|
- travis_retry sudo apt-get install gir1.2-pango gir1.2-gtk xdg-utils librsvg2-common libglib2.0-dev intltool
|
|
|
|
# - travis_retry sudo apt-get install python3-gobject python3-gi python3-cairo python3-gi-cairo python3-bsddb3 python3-dev
|
|
|
|
- travis_retry pip install pygobject
|
|
|
|
- travis_retry pip install pycairo
|
|
|
|
- travis_retry pip install bsddb3
|
|
|
|
- travis_retry pip install django
|
|
|
|
- travis_retry pip install pyicu
|
2015-03-13 08:59:10 +05:30
|
|
|
- python setup.py build
|
|
|
|
|
|
|
|
script:
|
2015-03-13 11:35:02 +05:30
|
|
|
- mkdir -p /home/travis/.gramps/grampsdb/
|
2015-03-13 18:39:34 +05:30
|
|
|
- DJANGO_SETTINGS_MODULE=gramps.webapp.settings nosetests --exclude=TestcaseGenerator --exclude=exportvcard_test --exclude=plugins --exclude=vcard --exclude=merge_ref_test --exclude=test_util_test --exclude=gramps.webapp --exclude=test2_exec_CLI --exclude=widgets --exclude=gui --exclude=test3_files_in_import_dir --exclude=test_manual_run gramps
|
2015-03-13 08:59:10 +05:30
|
|
|
|