forked from c4urself/bump2version
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
44 lines (33 loc) · 1.11 KB
/
appveyor.yml
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
version: '{build}'
build: off
environment:
matrix:
- PYTHON: "C:/Python35"
TOXENV: "py35"
- PYTHON: "C:/Python36"
TOXENV: "py36"
- PYTHON: "C:/Python37"
TOXENV: "py37"
- PYTHON: "C:/Python38"
TOXENV: "py38"
init:
- "ECHO %TOXENV%"
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
install:
- "%PYTHON%/python.exe -m pip install --upgrade wheel pip setuptools virtualenv"
- "%PYTHON%/python.exe -m pip install tox"
- "%PYTHON%/python.exe -m pip install -e ."
- 'git config --global user.email "[email protected]"'
- '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 <[email protected]>"
- 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"