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
|
# 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.3 # 3.3's quad or interpolate worked differently in some cases, not worth testing with
# - PYTHON: 3.5 # pint dropped support so tests fail
- PYTHON: 3.6
- PYTHON: 3.7
- PYTHON: 3.8
- PYTHON: 3.9
platform:
- x86
- x64
init:
- "ECHO %PYTHON%"
- 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 numba IPython sphinx
- cmd: pip install pytest-cov coveralls sympy thefuzz pint pytz sphinx matplotlib
test_script:
- cmd: py.test --cov-report html --cov=fluids -m "not online and not thermo and not numba"
branches:
only:
- release
|