gramps/.travis.yml

39 lines
1.3 KiB
YAML
Raw Normal View History

# After changing this file, check it on:
# http://lint.travis-ci.org/
2016-01-24 03:35:01 +05:30
language: python
2016-02-29 04:25:37 +05:30
python:
- 3.4
install:
- time sudo apt-get update
- 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
- travis_retry sudo apt-get install python3-mock
- travis_retry sudo wget https://bootstrap.pypa.io/get-pip.py
2016-02-29 04:32:06 +05:30
- sudo python get-pip.py
- travis_retry sudo pip install --upgrade coverage codecov pillow
2016-01-24 04:30:58 +05:30
# - travis_retry sudo apt-get install python3-icu
# - travis_retry sudo pip install pyicu==1.8
- 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-02-29 04:32:06 +05:30
- python setup.py build
#before_script:
# - sudo Xvfb :99 -ac &
# - export DISPLAY=:99
script:
- mkdir -p ~/.gramps/grampsdb/
# --exclude=TestUser because of older version of mock
# without configure_mock
- nosetests3 --nologcapture --with-coverage --cover-package=gramps --exclude=TestcaseGenerator --exclude=vcard --exclude=merge_ref_test --exclude=user_test gramps
2016-02-13 18:39:03 +05:30
after_success:
- codecov