A web scraper build to search specific information for a given compound (and its pseudonyms)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Added a basic testing structure

+21
+15
.travis.yml
··· 1 + # Config file for automatic testing at travis-ci.org 2 + 3 + language: python 4 + python: 2.7 5 + 6 + # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors 7 + install: 8 + - pip install flake8 Scrapy docopt 9 + 10 + # command to run tests, e.g. python setup.py test 11 + script: 12 + - nosetests tests 13 + - make lint 14 + 15 + after_success: coveralls
+1
tests/__init__.py
··· 1 + __author__ = 'jdekker'
+5
tests/test_sourceloader.py
··· 1 + import unittest 2 + 3 + 4 + class TestSourceloader(unittest.TestCase): 5 + pass