A web scraper build to search specific information for a given compound (and its pseudonyms)
at develop 23 lines 548 B view raw
1# Config file for automatic testing at travis-ci.org 2 3language: python 4python: 2.7 5 6before_install: 7 - "export DISPLAY=:99.0" 8 - "sh -e /etc/init.d/xvfb start" 9 10# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors 11install: 12 - pip install Scrapy docopt 13 - pip install coveralls 14 15# command to run tests, e.g. python setup.py test 16script: 17 - nosetests --with-coverage --cover-package=FourmiCrawler,utils,GUI tests 18 19notifications: 20 slack: descartes2:6sgCzx3PvrO9IIMwKxj12dDM 21 22after_success: 23 coveralls --verbose