forked from sepandhaghighi/pycm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
38 lines (33 loc) · 1.07 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
build: false
environment:
matrix:
- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6.0"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6.0"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python37"
PYTHON_VERSION: "3.7.0"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python37"
PYTHON_VERSION: "3.7.0"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8.0"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8.0"
PYTHON_ARCH: "32"
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
- "%PYTHON%/Scripts/pip.exe install -r requirements.txt"
- "%PYTHON%/python.exe setup.py install"
test_script:
- "%PYTHON%/python.exe -m pycm test"
- "%PYTHON%/python.exe -m pycm"
- "%PYTHON%/Scripts/pip.exe install --upgrade --upgrade-strategy=only-if-needed -r dev-requirements.txt"
- "%PYTHON%/python.exe -m pytest Test --cov=pycm --cov-report=term"
- "%PYTHON%/python.exe Otherfiles/version_check.py"
- "%PYTHON%/python.exe -m cProfile -s cumtime pycm/pycm_profile.py"