Skip to content

Commit ead2d0f

Browse files
committed
Adds appveyor config
1 parent c8c9e6d commit ead2d0f

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

appveyor.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
build: false
2+
3+
environment:
4+
matrix:
5+
- PYTHON: "C:/Python27"
6+
- PYTHON: "C:/Python27-x64"
7+
- PYTHON: "C:/Python33"
8+
- PYTHON: "C:/Python33-x64"
9+
- PYTHON: "C:/Python34"
10+
- PYTHON: "C:/Python34-x64"
11+
- PYTHON: "C:/Python35"
12+
- PYTHON: "C:/Python35-x64"
13+
14+
install:
15+
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
16+
17+
# Upgrade to the latest version of pip to avoid it displaying warnings
18+
# about it being out of date.
19+
- "pip install --disable-pip-version-check --user --upgrade pip"
20+
21+
# Install dependencies
22+
- "%CMD_IN_ENV% pip install -r tests-requirements.txt"
23+
- "%CMD_IN_ENV% pip install codecov"
24+
25+
test_script:
26+
- "py.test --cov=pendulum --cov-config=.coveragerc tests/"
27+
28+
after_test:
29+
- "codecov"

0 commit comments

Comments
 (0)