File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed
Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 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"
You can’t perform that action at this time.
0 commit comments