File: appveyor.yml

package info (click to toggle)
bumpversion 0.5.10-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 344 kB
  • sloc: python: 2,403; makefile: 25
file content (46 lines) | stat: -rw-r--r-- 1,113 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

version: '{build}'

build: off

environment:
  matrix:
    - PYTHON: "C:/Python27"
      TOXENV: "py27"

    - PYTHON: "C:/Python27"
      TOXENV: "py27-configparser"

    - PYTHON: "C:/Python34"
      TOXENV: "py34"

    - PYTHON: "C:/Python35"
      TOXENV: "py35"

    - PYTHON: "C:/Python36"
      TOXENV: "py36"

init:
  - "ECHO %TOXENV%"
  - "ECHO %PYTHON%"
  - ps: "ls C:/Python*"

install:
  - "%PYTHON%/python.exe -m pip install tox"
  - "%PYTHON%/python.exe -m pip install -e ."

  - 'git config --global user.email "bumpversion-test-git@appveyor.ci"'
  - 'git config --global user.name "Testing Git on AppVeyor CI"'
  - 'git --version'
  - 'git config --list'

  - ps: Add-Content $ENV:UserProfile\Mercurial.ini "[ui]`r`nusername = Testing Mercurial on AppVeyor CI <bumpversion-test-hg@appveyor.ci>"
  - ps: Write-Host $ENV:UserProfile\Mercurial.ini
  - ps: Get-Content $ENV:UserProfile\Mercurial.ini
  - 'hg --version'

test_script:
  - "%PYTHON%/Scripts/pip.exe --version"
  - "%PYTHON%/Scripts/virtualenv.exe --version"
  - "%PYTHON%/Scripts/tox.exe --version"
  - "%PYTHON%/Scripts/tox.exe -- -v"