forked from FreeDiscovery/FreeDiscovery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
59 lines (54 loc) · 2.1 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
53
54
55
56
57
58
# Adapted from https://github.com/bsmurphy/PyKrige/blob/master/appveyor.yml
build: false
environment:
global:
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
# /E:ON and /V:ON options are not enabled in the batch script intepreter
# See: http://stackoverflow.com/a/13751649/163740
WITH_COMPILER: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_compiler.cmd"
matrix:
- PYTHON_VERSION: 3.6
PYTHON_ARCH: "64"
MINICONDA: C:\Miniconda3-x64
#- PYTHON_VERSION: 2.7
# PYTHON_ARCH: "64"
# MINICONDA: C:\Miniconda-x64
# not running the other tests at the moment
# as AppVeyor is just too slow
#- PYTHON_VERSION: 2.7
# PYTHON_ARCH: "32"
# MINICONDA: C:\Miniconda
#- PYTHON_VERSION: 3.5
# PYTHON_ARCH: "32"
# MINICONDA: C:\Miniconda3
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH% %MINICONDA%"
install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
# create a conda virtual environement
- "cd C:\\projects\\freediscovery"
- conda config --append channels conda-forge
- "conda create -n freediscovery-env --yes --file requirements.txt python=%PYTHON_VERSION%"
- activate freediscovery-env
- python setup.py develop
test_script:
- activate freediscovery-env # activate the virtualenv
- "cd C:\\projects\\freediscovery"
- "py.test -sv"
# install matplotlib which we don't add as a core dependency but which is used in examples
- pip install matplotlib==1.5.3
# now start the server and run the examples
- ps: Start-Process -FilePath "freediscovery" -ArgumentList "run -y --cache-dir ..\\freediscovery_shared" -WorkingDirectory ".\\" -Verbose
- ps: |
cd ".\\examples"
Get-ChildItem ".\\" -Filter *.py |
Foreach-Object {
python $_.FullName 2>&1 | Tee-Object -Append -FilePath "log.txt"
}
type "..\\..\\freediscovery_shared\\freediscovery-backend.log"
if (sls "Traceback \(most recent call last\):" log.txt -ca -quiet) {
exit 1
}