mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-19 13:51:01 +00:00
24 lines
481 B
YAML
24 lines
481 B
YAML
language:
|
|
- objective-c
|
|
- python
|
|
python:
|
|
- "2.7"
|
|
# whitelist of git branches to build
|
|
branches:
|
|
only:
|
|
- travis
|
|
# install required programs
|
|
before_install:
|
|
- brew update
|
|
- brew install python
|
|
- brew install pyqt
|
|
- brew install gettext
|
|
- brew link --force gettext
|
|
# command to install dependencies
|
|
install:
|
|
- pip install -r requirements.txt --use-mirrors
|
|
# command to run tests
|
|
script: make app
|
|
# do not send emails of broken builds
|
|
notifications:
|
|
email: false
|