Skip to content
This repository was archived by the owner on Jan 28, 2021. It is now read-only.

Commit d3ef2bc

Browse files
committed
ci: add python-mysql and python-sqlalchemy to matrix
Signed-off-by: Miguel Molina <[email protected]>
1 parent 6f000e2 commit d3ef2bc

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ Makefile.main
3030
.ci/
3131
_example/main
3232
_example/*.exe
33+
test-server

.travis.yml

+14
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,20 @@ jobs:
3838
script:
3939
- make TEST=python-pymysql integration
4040

41+
- language: python
42+
python: '3.6'
43+
before_install:
44+
- eval "$(gimme 1.12.4)"
45+
script:
46+
- make TEST=python-mysql integration
47+
48+
- language: python
49+
python: '3.6'
50+
before_install:
51+
- eval "$(gimme 1.12.4)"
52+
script:
53+
- make TEST=python-sqlalchemy integration
54+
4155
- language: php
4256
php: '7.1'
4357
before_install:
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
pandas
2-
sqlalchemy
2+
sqlalchemy
3+
mysqlclient

_integration/python-sqlalchemy/test.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,13 @@
66
class TestMySQL(unittest.TestCase):
77

88
def test_connect(self):
9-
engine = sqlalchemy.create_engine('mysql+pymysql://root:@127.0.0.1:3306/mydb')
9+
engine = sqlalchemy.create_engine('mysql+mysqldb://root:@127.0.0.1:3306/mydb')
1010
with engine.connect() as conn:
1111
expected = {
1212
"name": {0: 'John Doe', 1: 'John Doe', 2: 'Jane Doe', 3: 'Evil Bob'},
1313
14-
"phone_numbers": {0: '["555-555-555"]', 1: '[]', 2: '[]', 3: '["555-666-555","666-666-666"]'},
14+
"phone_numbers": {0: ['555-555-555'], 1: [], 2: [], 3: ['555-666-555', '666-666-666']},
1515
}
16-
1716
repo_df = pd.read_sql_table("mytable", con=conn)
1817
d = repo_df.to_dict()
1918
del d["created_at"]

0 commit comments

Comments
 (0)