forked from mcs07/ChemDataExtractor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
27 lines (23 loc) · 792 Bytes
/
appveyor.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
platform:
- x64
environment:
matrix:
- PYTHON_VERSION: 2.7
CONDA_INSTALL_LOCN: C:\\Miniconda
- PYTHON_VERSION: 3.5
CONDA_INSTALL_LOCN: C:\\Miniconda35-x64
- PYTHON_VERSION: 3.6
CONDA_INSTALL_LOCN: C:\\Miniconda36-x64
install:
- cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
- cmd: conda config --set always_yes yes --set changeps1 no
- cmd: conda update -q conda
- cmd: conda config --add channels chemdataextractor
- cmd: conda info -a
- cmd: conda create -q -n cde python=%PYTHON_VERSION% appdirs beautifulsoup4 click cssselect dawg lxml nltk pdfminer.six python-dateutil requests six python-crfsuite pyyaml pytest
- cmd: activate cde
- cmd: python setup.py install
- cmd: cde data download
build: false
test_script:
- pytest