-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathappveyor.yml
34 lines (29 loc) · 900 Bytes
/
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
# AppVeyor recipe
# Not a VS project
build: off
environment:
matrix:
# List: https://www.appveyor.com/docs/windows-images-software/#python
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.4"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.8"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.5"
PYTHON_ARCH: "64"
#- PYTHON: "C:\\Python38-x64"
# PYTHON_VERSION: "3.8.2"
# PYTHON_ARCH: "64"
init:
- ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH% %HOMEDRIVE%%HOMEPATH%
install:
- ps: python -W ignore -m pip install --upgrade pip
- ps: python -W ignore -m pip install pipenv
- ps: $PIPENV_QUIET="true"
- pipenv --python %PYTHON_VERSION%
- pipenv install --dev --skip-lock
test_script:
# Run test script, but at the moment is a provisional test
- pipenv run provisional_test.py