mirror of
https://github.com/KevinMidboe/tableprint.git
synced 2026-01-05 08:55:55 +00:00
Updated readme, adds .travis.yml file
This commit is contained in:
27
.travis.yml
Normal file
27
.travis.yml
Normal file
@@ -0,0 +1,27 @@
|
||||
cache: apt
|
||||
sudo: false
|
||||
language: python
|
||||
python:
|
||||
- "2.7"
|
||||
- "3.4"
|
||||
- "3.5"
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- libatlas-dev
|
||||
- libatlas-base-dev
|
||||
- liblapack-dev
|
||||
- gfortran
|
||||
before_install:
|
||||
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
|
||||
- bash miniconda.sh -b -p $HOME/miniconda
|
||||
- export PATH="$HOME/miniconda/bin:$PATH"
|
||||
- conda update --yes conda
|
||||
install:
|
||||
- conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy
|
||||
- travis_retry pip install -r requirements-dev.txt
|
||||
- travis_retry python setup.py install
|
||||
script:
|
||||
- nosetests --with-coverage --cover-package=tableprint --logging-level=INFO
|
||||
after_success:
|
||||
- coveralls
|
||||
Reference in New Issue
Block a user