This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SQLObject development repository".
The branch, master has been updated
via 9c8dec32f56a8c9115668f5f7f2d42a21753a5fd (commit)
via 02191ead0900875a95aa02fb11a1b72935a09571 (commit)
from 9770622c4a1d5a2ea286e4ddf57bc40009889afa (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sourceforge.net/p/sqlobject/sqlobject/ci/9c8dec32f56a8c9115668f5f7f2d42a21753a5fd
commit 9c8dec32f56a8c9115668f5f7f2d42a21753a5fd
Author: Oleg Broytman <ph...@ph...>
Date: Fri Feb 2 21:38:11 2018 +0300
CI: Run PyMySQL tests at AppVeyor
diff --git a/appveyor.yml b/appveyor.yml
index ef71aef..f5a23b2 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -43,6 +43,16 @@ environment:
PYTHON_VERSION: "3.6"
PYTHON_HOME: "C:\\Python36-x64"
db: mysql
+ - TOXENV: "py27-pymysql-w32"
+ PYTHON_ARCH: "32"
+ PYTHON_VERSION: "2.7"
+ PYTHON_HOME: "C:\\Python27"
+ db: mysql
+ - TOXENV: "py36-pymysql-w32"
+ PYTHON_ARCH: "64"
+ PYTHON_VERSION: "3.6"
+ PYTHON_HOME: "C:\\Python36-x64"
+ db: mysql
- TOXENV: "py27-mysql-pyodbc-w32"
PYTHON_ARCH: "64"
PYTHON_VERSION: "2.7"
diff --git a/tox.ini b/tox.ini
index bf85a35..54498f6 100644
--- a/tox.ini
+++ b/tox.ini
@@ -440,6 +440,31 @@ commands = {[mysql-connector-w32]commands}
platform = win32
commands = {[mysql-connector-w32]commands}
+[pymysql-w32]
+platform = win32
+commands =
+ {[testenv]commands}
+ -mysql -u root "-pPassword12!" -e 'drop database sqlobject_test;'
+ mysql -u root "-pPassword12!" -e 'create database sqlobject_test;'
+ pytest --cov=sqlobject -D "mysql://root:Password12!@localhost/sqlobject_test?driver=pymysql&charset=utf8&debug=1"
+ mysql -u root "-pPassword12!" -e 'drop database sqlobject_test;'
+
+[testenv:py27-pymysql-w32]
+platform = win32
+commands = {[pymysql-w32]commands}
+
+[testenv:py34-pymysql-w32]
+platform = win32
+commands = {[pymysql-w32]commands}
+
+[testenv:py35-pymysql-w32]
+platform = win32
+commands = {[pymysql-w32]commands}
+
+[testenv:py36-pymysql-w32]
+platform = win32
+commands = {[pymysql-w32]commands}
+
[mysql-pyodbc-w32]
platform = win32
commands =
http://sourceforge.net/p/sqlobject/sqlobject/ci/02191ead0900875a95aa02fb11a1b72935a09571
commit 02191ead0900875a95aa02fb11a1b72935a09571
Author: Oleg Broytman <ph...@ph...>
Date: Fri Feb 2 21:32:30 2018 +0300
CI: Fix AppVeyor config: ODBC dirver for MySQL is 64 bit
diff --git a/appveyor.yml b/appveyor.yml
index a15419a..ef71aef 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -44,9 +44,9 @@ environment:
PYTHON_HOME: "C:\\Python36-x64"
db: mysql
- TOXENV: "py27-mysql-pyodbc-w32"
- PYTHON_ARCH: "32"
+ PYTHON_ARCH: "64"
PYTHON_VERSION: "2.7"
- PYTHON_HOME: "C:\\Python27"
+ PYTHON_HOME: "C:\\Python27-x64"
db: mysql
- TOXENV: "py36-mysql-pyodbc-w32"
PYTHON_ARCH: "64"
-----------------------------------------------------------------------
Summary of changes:
appveyor.yml | 12 +++++++++++-
tox.ini | 25 +++++++++++++++++++++++++
2 files changed, 36 insertions(+), 1 deletion(-)
hooks/post-receive
--
SQLObject development repository
|