forked from cemoody/lda2vec
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
34 lines (29 loc) · 955 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Much of this script was adapted from astropy/astropy.
language: python
env:
global:
- NUMPY_VERSION=1.10
matrix:
include:
# All the versions of Python.
- python: 2.7
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda2/bin:$PATH
install:
- conda create --yes -n testing python=$TRAVIS_PYTHON_VERSION
- source activate testing
- conda install --yes numpy=$NUMPY_VERSION nose pip numba cython scikit-learn h5py
- pip install chainer pytest spacy codecov coveralls pytest-cov
- python -m spacy.en.download --force all
- python setup.py install
script:
- ls
- pwd
- env | sort
- py.test --cov=lda2vec tests/ lda2vec --ignore=lda2vec/preprocess.py
- # python examples/twenty_newsgroups/lda.py
after_success:
- coveralls