File: appveyor.yml

package info (click to toggle)
duecredit 0.6.4-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 1,024 kB
  • sloc: python: 3,132; makefile: 10
file content (49 lines) | stat: -rw-r--r-- 1,415 bytes parent folder | download
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
environment:
  matrix:
    - PYTHON: "C:\\Python27"
      PYTHON_VERSION: "2.7.8"
      PYTHON_ARCH: "32"
      MINICONDA: C:\Miniconda

# TODO:
# Reenable whenever lxml whl becomes available for those
# otherwise it is a pain
#
#    - PYTHON: "C:\\Python33"
#      PYTHON_VERSION: "3.3.5"
#      PYTHON_ARCH: "32"
#      MINICONDA: C:\Miniconda3
#
#    - PYTHON: "C:\\Python34"
#      PYTHON_VERSION: "3.4.1"
#      PYTHON_ARCH: "32"
#      MINICONDA: C:\Miniconda3
#
#    - PYTHON: "C:\\Python35"
#      PYTHON_VERSION: "3.5.1"
#      PYTHON_ARCH: "32"
#      MINICONDA: C:\Miniconda35

init:
  - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH% %MINICONDA%"

# Not a .NET project, we build in the install step instead
build: false

install:
  - "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
  - conda config --set always_yes yes --set changeps1 no
  - conda update -q conda
  - conda info -a
  - "conda create -q -n test-environment python=%PYTHON_VERSION% contextlib2 pytest coverage requests six"
  - activate test-environment
  - pip install -r requirements.txt
  - pip install -e .

test_script:
  - coverage run --source duecredit -m py.test
  - python setup.py install

# for interactive debugging upon completion (have 30 min to react)
#on_finish:
#  - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))