forked from blond-admin/BLonD
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
52 lines (43 loc) · 1.35 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
image:
- Visual Studio 2017
environment:
matrix:
# - PATH: C:\Python36-x64;C:\mingw-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\mingw64\bin;%PATH%
- PATH: C:\Python37-x64;C:\mingw-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\mingw64\bin;%PATH%
- PATH: C:\Python38-x64;C:\mingw-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\mingw64\bin;%PATH%
# matrix:
# - VSVER: Visual Studio 14 2015
# - VSVER: Visual Studio 14 2015 Win64
# cache:
# - C:\ProgramData\chocolatey\bin -> appveyor.yml
# - C:\ProgramData\chocolatey\lib -> appveyor.yml
cache:
- '%LOCALAPPDATA%\pip\Cache'
platform:
- x86
# - Any CPU
configuration:
# - Debug
- Release
# install:
# - set PATH=C:\Python36-x64;%PATH%
# - set PATH=C:\Miniconda36-x64;%PATH%
before_build:
# - git submodule update --init --recursive
- PATH
- python --version
# - conda --version
- gcc --version
- python -m pip install --upgrade pip setuptools wheel pytest
- python -m pip install -r requirements.txt
# - conda update -q -y conda
# - conda info -a
# - conda create -q -y -n test-environment pip numpy scipy matplotlib future h5py
# - activate test-environment
# - pip install coveralls pytest parameterized
build_script:
- python setup.py install
- DIR
# - set PYTHONPATH=./
test_script:
- python -m pytest -v unittests\ --ignore-glob=unittests\integration\*mpi*.py