mirror of https://github.com/flaggo/pydu.git
30 lines
607 B
YAML
30 lines
607 B
YAML
build: off
|
|
|
|
environment:
|
|
matrix:
|
|
- PYTHON: "C:\\Python27-x64"
|
|
PYTHON_VERSION: "2.7.x"
|
|
PYTHON_ARCH: "64"
|
|
TOXENV: "py27"
|
|
|
|
- PYTHON: "C:\\Python35-x64"
|
|
PYTHON_VERSION: "3.5.x"
|
|
PYTHON_ARCH: "64"
|
|
TOXENV: "py35"
|
|
|
|
- PYTHON: "C:\\Python36-x64"
|
|
PYTHON_VERSION: "3.6.x"
|
|
PYTHON_ARCH: "64"
|
|
TOXENV: "py36"
|
|
|
|
install:
|
|
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
|
|
- "pip install --disable-pip-version-check --user --upgrade pip"
|
|
- "%CMD_IN_ENV% pip install tox codecov"
|
|
|
|
test_script:
|
|
- "%CMD_IN_ENV% tox"
|
|
|
|
on_success:
|
|
- "%CMD_IN_ENV% codecov"
|