source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/appveyor.yml @ 42095c5

mainqndtest v1.1.1
Last change on this file since 42095c5 was 42bd667, checked in by David Fuertes <dfuertes@…>, 4 years ago

Historial Limpio

  • Property mode set to 100755
File size: 1.0 KB
RevLine 
[42bd667]1build: false
2before_build:
3  - choco install redis-64
4  - redis-server --service-install
5  - redis-server --service-start
6
7environment:
8  matrix:
9    - PYTHON: "C:/Python27"
10      COVERAGE_PROCESS_START: gluon/tests/coverage.ini
11      PYTHON_ARCH: "64"
12
13    - PYTHON: "C:/Python35"
14      COVERAGE_PROCESS_START: gluon/tests/coverage.ini
15      PYTHON_ARCH: "64"
16
17    - PYTHON: "C:/Python36"
18      COVERAGE_PROCESS_START: gluon/tests/coverage.ini
19      PYTHON_ARCH: "64"
20
21    - PYTHON: "C:/Python37"
22      COVERAGE_PROCESS_START: gluon/tests/coverage.ini
23      PYTHON_ARCH: "64"
24
25clone_depth: 50
26
27init:
28  - "ECHO %PYTHON%"
29  - set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
30
31install:
32  - python -m ensurepip
33  - pip install codecov redis
34  - git submodule update --init --recursive
35  # Check that we have the expected version and architecture for Python
36  - "python --version"
37  - "python -c \"import struct; print(struct.calcsize('P') * 8)\""
38
39test_script:
40  - python web2py.py --run_system_tests --with_coverage
41
42after_test:
43  - coverage combine
44  - codecov
Note: See TracBrowser for help on using the repository browser.