Commit 65fad088 by Sébastien Eustace

Update appveyor config

parent 34c676a1
...@@ -4,6 +4,9 @@ environment: ...@@ -4,6 +4,9 @@ environment:
PYTHONIOENCODING: "UTF-8" PYTHONIOENCODING: "UTF-8"
matrix: matrix:
- PYTHON: "C:/Python27-x64"
- PYTHON: "C:/Python34-x64"
- PYTHON: "C:/Python35-x64"
- PYTHON: "C:/Python36-x64" - PYTHON: "C:/Python36-x64"
install: install:
...@@ -11,15 +14,14 @@ install: ...@@ -11,15 +14,14 @@ install:
# Upgrade to the latest version of pip to avoid it displaying warnings # Upgrade to the latest version of pip to avoid it displaying warnings
# about it being out of date. # about it being out of date.
- pip install --disable-pip-version-check --user --upgrade pip - "python -m pip install --disable-pip-version-check --user --upgrade pip"
# Create poetry virtualenv # Create poetry virtualenv
- pip install poetry --pre - curl -fsS -o get-poetry.py https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py
- python -m venv venv - python get-poetry.py --preview
- venv\\Scripts\\activate.bat
# Install dependencies # Install dependencies
- poetry install -v - poetry install -v
test_script: test_script:
- "pytest --cov=poetry tests/" - "poetry run pytest --cov=poetry tests/ -W ignore"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment