Skip to content

Commit

Permalink
Attempt appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebBell committed Aug 30, 2020
1 parent db55f78 commit c19c28b
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions appveyor.yml
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"

0 comments on commit c19c28b

Please sign in to comment.