# Match travis
clone_depth: 50
+services:
+ - postgresql
+
environment:
+ PGUSER: "postgres"
+ PGPASSWORD: "Password12!"
+
matrix:
- PYTHON_HOME: "C:\\Python27"
PYTHON_VERSION: "2.7"
PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
TOX_ENV: "py36"
+ - PYTHON_HOME: "C:\\Python27"
+ PYTHON_VERSION: "2.7"
+ PYTHON_ARCH: "32"
+ TOX_ENV: "py27-postgres-w32"
+ - PYTHON_HOME: "C:\\Python27-x64"
+ PYTHON_VERSION: "2.7"
+ PYTHON_ARCH: "64"
+ TOX_ENV: "py27-postgres-w32"
+ - PYTHON_HOME: "C:\\Python34"
+ PYTHON_VERSION: "3.4"
+ PYTHON_ARCH: "32"
+ TOX_ENV: "py34-postgres-w32"
+ - PYTHON_HOME: "C:\\Python34-x64"
+ PYTHON_VERSION: "3.4"
+ PYTHON_ARCH: "64"
+ TOX_ENV: "py34-postgres-w32"
+ - PYTHON_HOME: "C:\\Python35"
+ PYTHON_VERSION: "3.5"
+ PYTHON_ARCH: "32"
+ TOX_ENV: "py35-postgres-w32"
+ - PYTHON_HOME: "C:\\Python35-x64"
+ PYTHON_VERSION: "3.5"
+ PYTHON_ARCH: "64"
+ TOX_ENV: "py35-postgres-w32"
+ - PYTHON_HOME: "C:\\Python36"
+ PYTHON_VERSION: "3.6"
+ PYTHON_ARCH: "32"
+ TOX_ENV: "py36-postgres-w32"
+ - PYTHON_HOME: "C:\\Python36-x64"
+ PYTHON_VERSION: "3.6"
+ PYTHON_ARCH: "64"
+ TOX_ENV: "py36-postgres-w32"
- PYTHON_HOME: "C:\\Python27"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"
install:
# Ensure we use the right python version
- - "SET PATH=%PYTHON_HOME%;%PYTHON_HOME%\\Scripts;%PATH%"
+ - "SET PATH=%PYTHON_HOME%;%PYTHON_HOME%\\Scripts;C:\\Program Files\\PostgreSQL\\9.5\\bin;%PATH%"
- "SET TOXPYTHON=%PYTHON_HOME%\\python.exe"
- "python --version"
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
[tox]
minversion = 1.8
-envlist = {py27,py34,py35,py36},{py27,py34,py35,py36}-{postgres,sqlite,sqlite-w32},{py27,py34}-flake8
+envlist = {py27,py34,py35,py36},{py27,py34,py35,py36}-{postgres,postgres-w32,sqlite,sqlite-w32},{py27,py34}-flake8
# Base test environment settings
[testenv]
deps =
-rdevscripts/requirements/requirements_tests.txt
postgres: psycopg2
+passenv = PGPASSWORD
sitepackages = True
# Don't fail or warn on uninstalled commands
whitelist_externals =
[postgresql]
commands =
{[testenv]commands}
- -dropdb test
- createdb test
- {envpython} -m pytest --cov=sqlconvert -D postgres:///test
- dropdb test
+ -dropdb -U postgres -w test
+ createdb -U postgres -w test
+ {envpython} -m pytest --cov=sqlconvert -D postgres://postgres:@localhost/test
+ dropdb -U postgres -w test
[testenv:py27-postgres]
commands = {[postgresql]commands}
[testenv:py36-postgres]
commands = {[postgresql]commands}
+[postgres-w32]
+commands =
+ {[testenv]commands}
+ -dropdb -U postgres -w test
+ createdb -U postgres -w test
+ pytest --cov=sqlconvert -D "postgres://postgres:Password12!@localhost/test"
+ dropdb -U postgres -w test
+
+[testenv:py27-postgres-w32]
+commands = {[postgres-w32]commands}
+
+[testenv:py34-postgres-w32]
+commands = {[postgres-w32]commands}
+
+[testenv:py35-postgres-w32]
+commands = {[postgres-w32]commands}
+
+[testenv:py36-postgres-w32]
+commands = {[postgres-w32]commands}
+
# SQLite test environments
[sqlite]
commands =