forked from mcs07/ChemDataExtractor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
platform: | ||
- x64 | ||
|
||
environment: | ||
matrix: | ||
- PYTHON_VERSION: 2.7 | ||
MINICONDA: C:\Miniconda-x64 | ||
- PYTHON_VERSION: 3.5 | ||
MINICONDA: C:\Miniconda35-x64 | ||
- PYTHON_VERSION: 3.6 | ||
MINICONDA: C:\Miniconda36-x64 | ||
|
||
init: | ||
- "ECHO %PYTHON_VERSION% %MINICONDA%" | ||
|
||
install: | ||
- cmd: "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%" | ||
- 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 | ||
|
||
test_script: | ||
- pytest |