main
Last change
on this file was
42bd667,
checked in by David Fuertes <dfuertes@…>, 4 years ago
|
Historial Limpio
|
-
Property mode set to
100755
|
File size:
1.1 KB
|
Line | |
---|
1 | build: false |
---|
2 | |
---|
3 | services: |
---|
4 | - mssql2014 |
---|
5 | |
---|
6 | environment: |
---|
7 | matrix: |
---|
8 | - PYTHON: "C:/Python27" |
---|
9 | adapter: "mssql" |
---|
10 | - PYTHON: "C:/Python27" |
---|
11 | adapter: "mssqln" |
---|
12 | - PYTHON: "C:/Python34" |
---|
13 | adapter: "mssql" |
---|
14 | - PYTHON: "C:/Python34" |
---|
15 | adapter: "mssqln" |
---|
16 | - PYTHON: "C:/Python35" |
---|
17 | adapter: "mssql" |
---|
18 | - PYTHON: "C:/Python35" |
---|
19 | adapter: "mssqln" |
---|
20 | - PYTHON: "C:/Python36-x64" |
---|
21 | PYTHON_ARCH: "64" |
---|
22 | adapter: "mssql" |
---|
23 | - PYTHON: "C:/Python36-x64" |
---|
24 | PYTHON_ARCH: "64" |
---|
25 | adapter: "mssqln" |
---|
26 | |
---|
27 | clone_depth: 50 |
---|
28 | |
---|
29 | init: |
---|
30 | - "ECHO %PYTHON%" |
---|
31 | - set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH% |
---|
32 | |
---|
33 | install: |
---|
34 | - ps: Start-FileDownload https://bootstrap.pypa.io/get-pip.py |
---|
35 | - python get-pip.py |
---|
36 | - pip install tox==1.9.2 |
---|
37 | - pip install codecov |
---|
38 | |
---|
39 | before_test: |
---|
40 | - ps: | |
---|
41 | while($LASTEXITCODE -ne 0) |
---|
42 | { |
---|
43 | & sqlcmd -S "(local)\SQL2014" -b -U "sa" -P "Password12!" -Q "CREATE DATABASE pydal COLLATE Latin1_General_CS_AS;" -d "master" |
---|
44 | sleep 10; $val++; Write-Host Waiting ... $val; if($val -ge 10) {break} |
---|
45 | } |
---|
46 | |
---|
47 | test_script: |
---|
48 | - tox -e coverage-%adapter% |
---|
49 | |
---|
50 | after_test: |
---|
51 | - codecov |
---|
Note: See
TracBrowser
for help on using the repository browser.