forked from mrJean1/PyGeodesy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
51 lines (44 loc) · 1.46 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
environment:
APPVEYOR: True
# CODECOV_ENV: APPVEYOR_JOB_NAME
matrix:
# <http://www.AppVeyor.com/docs/windows-images-software/#python>
- APPVEYOR_JOB_NAME: "Python37-64bit"
PYTHON: "C:\\Python37-x64"
- APPVEYOR_JOB_NAME: "Python37-64bit-isLazy-0"
PYTHON: "C:\\Python37-x64"
PYTHONDONTWRITEBYTECODE: "1"
PYGEODESY_LAZY_IMPORT: "0"
- APPVEYOR_JOB_NAME: "Python37-32bit"
PYTHON: "C:\\Python37"
- APPVEYOR_JOB_NAME: "Python37-32bit-isLazy-0"
PYTHON: "C:\\Python37"
PYTHONDONTWRITEBYTECODE: "1"
PYGEODESY_LAZY_IMPORT: "0"
- APPVEYOR_JOB_NAME: "Python36-64bit"
PYTHON: "C:\\Python36-x64"
- APPVEYOR_JOB_NAME: "Python36-32bit"
PYTHON: "C:\\Python36"
- APPVEYOR_JOB_NAME: "Python27-64bit"
PYTHON: "C:\\Python27-x64"
- APPVEYOR_JOB_NAME: "Python27-32bit"
PYTHON: "C:\\Python27"
# Python-26 no longer supported
install:
# symlink python from a directory with a space
- "mklink /d \"C:\\Program Files\\Python\" %PYTHON%"
- "set PYTHON=\"C:\\Program Files\\Python\""
- set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
# UTF-8 for unicode test results
- set PYTHONIOENCODING=utf-8
- pip install geographiclib
# pip install win_unicode_console
build: off
#cache:
# - '%LOCALAPPDATA%\pip\Cache'
test_script:
- cd C:\\projects\\pygeodesy
- python test\\run.py -failedonly
# python test\\run.py -results
# type testresults\\testresults*Windows*.txt
# version: '{build}'