2015-03-13 08:59:10 +05:30
|
|
|
# After changing this file, check it on:
|
|
|
|
# http://lint.travis-ci.org/
|
|
|
|
|
|
|
|
|
2016-01-24 03:35:01 +05:30
|
|
|
language: python
|
2016-01-24 02:07:29 +05:30
|
|
|
python:
|
|
|
|
- 3.4
|
2015-03-13 08:59:10 +05:30
|
|
|
|
|
|
|
install:
|
2016-01-24 03:02:30 +05:30
|
|
|
- python3 --version
|
2016-01-24 03:35:01 +05:30
|
|
|
- python --version
|
2015-03-13 08:59:10 +05:30
|
|
|
- time sudo apt-get update
|
2015-08-19 19:02:57 +05:30
|
|
|
- travis_retry sudo apt-get install gir1.2-pango gir1.2-gtk xdg-utils librsvg2-common libglib2.0-dev intltool
|
2016-01-24 02:46:37 +05:30
|
|
|
- travis_retry sudo apt-get install python3-gobject python3-gi python3-cairo python3-gi-cairo python3-bsddb3 python3-dev python3-nose
|
2015-03-13 19:17:10 +05:30
|
|
|
|
2016-01-24 02:54:09 +05:30
|
|
|
|
2016-01-24 03:35:01 +05:30
|
|
|
- travis_retry curl https://bootstrap.pypa.io/get-pip.py > get-pip.py
|
|
|
|
- sudo python get-pip.py
|
|
|
|
- travis_retry sudo pip install pyicu==1.8
|
|
|
|
- travis_retry sudo pip install mock
|
2015-08-19 19:02:57 +05:30
|
|
|
|
|
|
|
- cd $TRAVIS_BUILD_DIR
|
|
|
|
# $TRAVIS_BUILD_DIR is set to the location of the cloned repository:
|
|
|
|
# for example: /home/travis/build/gramps-project/gramps
|
2016-01-24 03:35:01 +05:30
|
|
|
- python setup.py build
|
2015-03-13 08:59:10 +05:30
|
|
|
|
2015-03-15 11:05:14 +05:30
|
|
|
#before_script:
|
|
|
|
# - sudo Xvfb :99 -ac &
|
|
|
|
# - export DISPLAY=:99
|
2015-03-15 10:36:09 +05:30
|
|
|
|
2015-03-13 08:59:10 +05:30
|
|
|
script:
|
2015-08-19 19:02:57 +05:30
|
|
|
- mkdir -p ~/.gramps/grampsdb/
|
2016-01-07 01:54:27 +05:30
|
|
|
- nosetests3 --exclude=TestcaseGenerator --exclude=vcard --exclude=merge_ref_test gramps
|