Skip to content

Commit

Permalink
Added Tarantool 1.8 to travis build for ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
igorcoding committed Sep 30, 2017
1 parent 0aed7c4 commit 14bf51a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@ matrix:
python: '3.5'
env: BUILD=tests TARANTOOL_VERSION=1_7

# trusty python3.6 Tarantool 1.8
- os: linux
dist: trusty
sudo: required
language: python
python: '3.6'
env: BUILD=tests TARANTOOL_VERSION=1_8

# trusty python3.6 Tarantool 1.7 + deploy
- os: linux
dist: trusty
Expand Down
2 changes: 1 addition & 1 deletion asynctnt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .connection import Connection, connect
from .iproto.protocol import Iterator, Response

__version__ = '0.1.8'
__version__ = '0.1.9'
3 changes: 2 additions & 1 deletion tests/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ async def test__schema_refetch_on_schema_change(self):
'Schema changed')

async def test__schema_refetch_on_schema_change_format(self):
await self.tnt_reconnect(auto_refetch_schema=True, username='t1', password='t1')
await self.tnt_reconnect(auto_refetch_schema=True,
username='t1', password='t1')
self.assertTrue(self.conn.fetch_schema)
self.assertTrue(self.conn.auto_refetch_schema)
schema_before = self.conn.schema_id
Expand Down

0 comments on commit 14bf51a

Please sign in to comment.