mirror of
https://github.com/mkdocs/mkdocs.git
synced 2026-03-27 09:58:31 +07:00
* pip is already installed by default. No need to install it manually, which was causing an error anyway. * Confirm tox envs use correct Python version. The documentation at <https://packaging.python.org/guides/supporting-windows-using-appveyor/> seems to suggest it shouldn't work, but it clearly does.
29 lines
729 B
YAML
29 lines
729 B
YAML
build: false
|
|
environment:
|
|
matrix:
|
|
- TOXENV: py27-integration
|
|
- TOXENV: py27-min-req
|
|
- TOXENV: py27-unittests
|
|
- TOXENV: py33-integration
|
|
- TOXENV: py33-min-req
|
|
- TOXENV: py33-unittests
|
|
- TOXENV: py34-integration
|
|
- TOXENV: py34-min-req
|
|
- TOXENV: py34-unittests
|
|
- TOXENV: py35-integration
|
|
- TOXENV: py35-min-req
|
|
- TOXENV: py35-unittests
|
|
- TOXENV: py36-integration
|
|
- TOXENV: py36-min-req
|
|
- TOXENV: py36-unittests
|
|
- TOXENV: flake8
|
|
init:
|
|
- "ECHO %TOXENV%"
|
|
install:
|
|
- "c:\\python27\\Scripts\\pip install tox"
|
|
test_script:
|
|
- "git clean -f -d -x"
|
|
- "c:\\python27\\Scripts\\tox --version"
|
|
- "c:\\python27\\Scripts\\pip --version"
|
|
- "c:\\python27\\Scripts\\tox"
|