mirror of
https://github.com/dh1tw/pyhamtools.git
synced 2026-01-05 16:20:27 +01:00
The first dependencies and sub-dependencies (e.g. Colorama) stopped supporting python 3.4. Hence support was removed in pyhamtools as well.
38 lines
891 B
YAML
38 lines
891 B
YAML
build: false
|
|
|
|
environment:
|
|
matrix:
|
|
- PYTHON: "C:\\Python27"
|
|
PYTHON_VERSION: "2.7.8"
|
|
PYTHON_ARCH: "32"
|
|
|
|
- PYTHON: "C:\\Python35"
|
|
PYTHON_VERSION: "3.5.4"
|
|
PYTHON_ARCH: "32"
|
|
|
|
- PYTHON: "C:\\Python36"
|
|
PYTHON_VERSION: "3.6.4"
|
|
PYTHON_ARCH: "32"
|
|
|
|
- PYTHON: "C:\\Python37"
|
|
PYTHON_VERSION: "3.7.5"
|
|
PYTHON_ARCH: "32"
|
|
|
|
- PYTHON: "C:\\Python38"
|
|
PYTHON_VERSION: "3.8.0"
|
|
PYTHON_ARCH: "32"
|
|
|
|
init:
|
|
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
|
|
|
|
install:
|
|
- nuget install redis-64 -excludeversion
|
|
- redis-64\tools\redis-server.exe --service-install
|
|
- redis-64\tools\redis-server.exe --service-start
|
|
- "%PYTHON%/Scripts/pip.exe install -e ."
|
|
- "%PYTHON%/Scripts/pip.exe install -r requirements-docs.txt"
|
|
- "%PYTHON%/Scripts/pip.exe install -r requirements-pytest.txt"
|
|
|
|
test_script:
|
|
- "%PYTHON%/Scripts/pytest"
|