From 14bf51a8225e40bbd1e459a983e044949fa99def Mon Sep 17 00:00:00 2001 From: igorcoding Date: Sat, 30 Sep 2017 21:59:14 +0300 Subject: [PATCH] Added Tarantool 1.8 to travis build for ubuntu --- .travis.yml | 8 ++++++++ asynctnt/__init__.py | 2 +- tests/test_common.py | 3 ++- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f8ac68e..3c06c78 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/asynctnt/__init__.py b/asynctnt/__init__.py index 114f897..26fe874 100644 --- a/asynctnt/__init__.py +++ b/asynctnt/__init__.py @@ -1,4 +1,4 @@ from .connection import Connection, connect from .iproto.protocol import Iterator, Response -__version__ = '0.1.8' +__version__ = '0.1.9' diff --git a/tests/test_common.py b/tests/test_common.py index ac24b52..6d7b1e9 100644 --- a/tests/test_common.py +++ b/tests/test_common.py @@ -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