From 6d7586e0d12b7ca3dd16fc286846e9f60486af6e Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Sat, 8 Oct 2016 09:42:26 +0200 Subject: [PATCH] Fix periodic jobs: Add databases to bindep.txt Periodic tests are failing like: http://logs.openstack.org/periodic/periodic-neutron-py27-with-oslo-master/2eea2ff/ http://logs.openstack.org/periodic/periodic-neutron-py35-with-oslo-master/b62e14e/ http://logs.openstack.org/periodic/periodic-neutron-py35-with-neutron-lib-master/e9956ae/ These tests need expect the MySQL and PostgreSQL databases to be available in their infra setup. Add the needed files to bindep.txt. Change-Id: Ic90b5d136228e1157c38b50a8c2bfa34ddf0f9b4 --- bindep.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/bindep.txt b/bindep.txt index a2011f5f4d0..7e1f8dd536b 100644 --- a/bindep.txt +++ b/bindep.txt @@ -3,3 +3,17 @@ # tools/misc-sanity-checks.sh validates .po[t] files gettext [test] + +# MySQL and PostgreSQL databases since some jobs are set up in +# OpenStack infra that need these like +# periodic-neutron-py27-with-oslo-master and +# periodic-neutron-py35-with-neutron-lib-master. +libmysqlclient-dev [platform:dpkg test] +mysql [platform:rpm test] +mysql-client [platform:dpkg test] +mysql-devel [platform:rpm test] +mysql-server [test] +postgresql [test] +postgresql-client [platform:dpkg test] +postgresql-devel [platform:rpm test] +postgresql-server [platform:rpm test]