forked from dateutil/dateutil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
32 lines (30 loc) · 1.03 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
build: false
environment:
matrix:
- PYTHON: "C:/Python27"
- PYTHON: "C:/Python27-x64"
- PYTHON: "C:/Python33"
- PYTHON: "C:/Python33-x64"
- PYTHON: "C:/Python34"
- PYTHON: "C:/Python34-x64"
- PYTHON: "C:/Python35"
- PYTHON: "C:/Python35-x64"
install:
# Add PostgreSQL (zic), Python and scripts directory to current path
- set path=c:\Program Files\PostgreSQL\9.3\bin\;%PATH%
- set path=%PATH%;%PYTHON%;%PYTHON%/Scripts
# Download scripts and dependencies
- ps: Start-FileDownload 'https://bootstrap.pypa.io/get-pip.py'
- "python get-pip.py"
- "pip install six"
- "pip install coverage"
- "pip install codecov"
# This frequently fails with network errors, so we'll retry it up to 5 times
# with a 1 minute rate limit.
- "ci_tools/retry.bat %PYTHON%/python.exe updatezinfo.py"
# This environment variable tells the test suite it's OK to mess with the time zone.
- set DATEUTIL_MAY_CHANGE_TZ=1
test_script:
- "coverage run --omit=setup.py,dateutil/test/* setup.py test"
after_test:
- "codecov"