Skip to content
Snippets Groups Projects
Commit d48406d5 authored by Alexander V. Tikhonov's avatar Alexander V. Tikhonov Committed by Kirill Yukhin
Browse files

test: add more tests to packaging testing

Changed number of tests to packaging testing jobs from
suites: "unit/ app/ app-tap/ box/ box-tap/ engine/ vinyl/",
to all suites except 'replication/' suite which has special
issue for it's enabling:
  https://github.com/tarantool/tarantool/issues/4798
Also added testing to the all available packing jobs except
'CentOS 6'.

Removed test-run option that run testing inline to be
able to run it in parallel. Also changed 'test-run' to
'make test-force' command.

Closes #4599
parent f5880666
No related branches found
Tags 1.7.1
No related merge requests found
......@@ -163,9 +163,19 @@ make %{?_smp_mflags}
rm -rf %{buildroot}%{_datarootdir}/doc/tarantool/
%check
%if "%{_ci}" == "travis"
%if (0%{?fedora} >= 22 || 0%{?rhel} >= 7)
cd test && ./test-run.py --force -j 1 unit/ app/ app-tap/ box/ box-tap/ engine/ vinyl/
%endif
%else
%if 0%{?rhel} != 6
# Run all available test suites except 'replication'
# which is not currently ready for this testing and
# has standalone issue for it's enabling:
# https://github.com/tarantool/tarantool/issues/4798
TEST_RUN_EXCLUDE='replication/' make test-force
%endif
%endif
%pre
/usr/sbin/groupadd -r tarantool > /dev/null 2>&1 || :
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment