From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Wed, 19 Sep 2018 19:14:07 +0300 From: Alexander Turenko Subject: Re: [PATCH v2] test: skip ddl test for vinyl on travis Message-ID: <20180919161406.ljhmrjfspghfivoq@tkn_work_nb> References: <20180917181119.tbsjrn7ngwd7bmk6@tkn_work_nb> <20180918134725.19384-1-sergw@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20180918134725.19384-1-sergw@tarantool.org> To: Sergei Voronezhskii Cc: tarantool-patches@freelists.org, Vladimir Davydov List-ID: Hi! LGTM. WBR, Alexander Turenko. On Tue, Sep 18, 2018 at 04:47:25PM +0300, Sergei Voronezhskii wrote: > Until the bug in #3420 is fixed > --- > > branch: sergw/travis-skip-test-ddl > rpm/tarantool.spec | 2 ++ > test/vinyl/ddl.skipcond | 6 ++++++ > 2 files changed, 8 insertions(+) > create mode 100644 test/vinyl/ddl.skipcond > > diff --git a/rpm/tarantool.spec b/rpm/tarantool.spec > index c87b1667d..bd2469d90 100644 > --- a/rpm/tarantool.spec > +++ b/rpm/tarantool.spec > @@ -149,6 +149,8 @@ rm -rf %{buildroot}%{_datarootdir}/doc/tarantool/ > echo "self.skip = True" > ./test/app/socket.skipcond > # https://github.com/tarantool/tarantool/issues/1322 > echo "self.skip = True" > ./test/app/digest.skipcond > +# https://github.com/tarantool/tarantool/issues/3420 > +echo "self.skip = True" > ./test/vinyl/ddl.skipcond > # run a safe subset of the test suite > cd test && ./test-run.py -j 1 unit/ app/ app-tap/ box/ box-tap/ engine/ vinyl/ > %endif > diff --git a/test/vinyl/ddl.skipcond b/test/vinyl/ddl.skipcond > new file mode 100644 > index 000000000..d7938a443 > --- /dev/null > +++ b/test/vinyl/ddl.skipcond > @@ -0,0 +1,6 @@ > +# vim: set ft=python : > +import os > + > +# Travis CI fails because of bud #3420 > +if os.environ.get('TRAVIS_JOB_ID', False): > + self.skip = 1 > -- > 2.18.0 >