bmc/.travis.yml

25 lines
571 B
YAML
Raw Permalink Normal View History

2014-06-29 04:23:14 +02:00
language: python
python:
- 2.7
2014-08-03 00:22:08 +02:00
- 3.3
2014-06-30 23:37:11 +02:00
before_install:
- sudo apt-get update
2014-06-29 04:23:14 +02:00
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
2014-06-30 00:40:50 +02:00
- pip install arxiv2bib
2014-08-03 00:22:08 +02:00
- pip install PySocks
2014-06-29 04:23:14 +02:00
- pip install pyPDF2
2014-06-30 00:42:19 +02:00
- pip install tear-pages
2014-07-08 21:37:13 +02:00
- pip install isbnlib
2014-06-29 04:23:14 +02:00
- pip install bibtexparser
- pip install coveralls
2014-06-30 23:37:11 +02:00
- sudo apt-get install -qq poppler-utils
- sudo apt-get install -qq djvulibre-bin
2014-07-12 01:22:00 +02:00
- python setup.py install
2014-06-29 04:23:14 +02:00
# command to run tests, e.g. python setup.py test
script:
- nosetests
after_success:
- coveralls