-
Notifications
You must be signed in to change notification settings - Fork 40
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
4 additions
and
7 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 |
---|---|---|
@@ -1,30 +1,27 @@ | ||
# File after https://github.com/jowr/jopy/blob/master/appveyor.yml, copyright predominately Jorrit Wronski | ||
# Tell appveyor to not use msbuild | ||
build: false | ||
|
||
environment: | ||
matrix: | ||
- PYTHON: 2.7 | ||
- PYTHON: 3.5 | ||
- PYTHON: 3.6 | ||
- PYTHON: 3.7 | ||
- PYTHON: 3.8 | ||
|
||
platform: | ||
- x86 | ||
- x64 | ||
|
||
init: | ||
- "ECHO %PYTHON%" | ||
- cmd: SET PATH=C:\Miniconda36\Scripts;C:\Miniconda\Scripts;%PATH% | ||
- cmd: SET PATH=C:\Miniconda3\Scripts;C:\Miniconda\Scripts;%PATH% | ||
- cmd: conda update -yq conda | ||
- cmd: conda install -yq conda-env conda-build | ||
- cmd: conda create -yq -n condaenv python=%PYTHON% | ||
|
||
install: | ||
- cmd: activate condaenv | ||
- cmd: conda install -yq numpy scipy pip pytest pandas matplotlib | ||
- cmd: pip install pytest-cov coveralls sympy fluids coolprop | ||
- cmd: pip install pytest-cov coveralls sympy fluids coveralls sympy fuzzywuzzy pint pytz | ||
- cmd: python setup.py install | ||
|
||
test_script: | ||
- cmd: py.test --cov-report html --cov=chemicals -m "not slow and not rdkit" | ||
- cmd: py.test --cov-report html --cov=chemicals -m "not slow and not online" |