File: appveyor.yml

package info (click to toggle)
python-fluids 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 13,108 kB
  • sloc: python: 59,520; f90: 481; lisp: 342; ansic: 337; cpp: 228; ruby: 145; haskell: 118; perl: 106; makefile: 59; javascript: 49
file content (35 lines) | stat: -rw-r--r-- 1,026 bytes parent folder | download | duplicates (2)
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