-
Notifications
You must be signed in to change notification settings - Fork 3
/
.appveyor.yml
41 lines (32 loc) · 908 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
build: off
# branches to build
branches:
only:
- master
- appveyor
environment:
matrix:
- PYTHON: "C:\\Miniconda3"
CONDA_PY: "35"
CONDA_NPY: "1.10"
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
- set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
- where python
- python -m conda install -c rdkit -c josan_bcn -c nostrumbiodiscovery -c ambermd -c conda-forge mdtraj biopython seaborn scipy==1.1.0 mordred nltk requests matplotlib -y
- python -m conda install -c anaconda py-xgboost
- python -m pip install sklearn prody umap-learn pytest
test_script:
- "%PYTHON%\\python.exe -m pytest"
after_test:
- "%PYTHON%\\python.exe setup.py bdist_wheel"
artifacts:
- path: dist\*
notifications:
- provider: Email
to:
- dsoler@nostrumbiodiscovery.com
on_build_success: false
on_build_failure: true
on_build_status_changed: true