From: iberezovskiy Date: Mon, 13 Oct 2014 14:58:14 +0000 (+0400) Subject: Add missed python-lesscpy for horizon X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=fe64e937f72b6f2ce6036f5470183ec38bb96d33;p=openstack-build%2Fhorizon-build.git Add missed python-lesscpy for horizon Change-Id: I205fdb667845dc9848b318f861991af955a34e72 Closes-bug: #1380655 --- diff --git a/debian/control b/debian/control index b72215b..485f215 100644 --- a/debian/control +++ b/debian/control @@ -7,6 +7,7 @@ Build-Depends: pylint, python-all (>= 2.6.6-3~), python-django-nose, + python-lesscpy, python-mox, python-netaddr, python-nose, @@ -35,6 +36,7 @@ Depends: python-iso8601 (>= 0.1.9), python-keystoneclient (>= 1:0.10.0), python-kombu (>= 2.5.0), + python-lesscpy, python-lockfile (>= 0.8), python-memcache, python-netaddr (>= 0.7.12), diff --git a/tests/runtests.sh b/tests/runtests.sh index c0aa028..0e8f52f 100755 --- a/tests/runtests.sh +++ b/tests/runtests.sh @@ -4,6 +4,13 @@ RES=0 case $1 in openstack-dashboard) + python -c "import lesscpy" + if [ $? -ne '0' ]; then + echo "We have missed lesscpy dependency" + RES=1 + exit $RES + fi + if [[ `cat /etc/*-release | head -n 1 | awk '{print $1}'` =~ Ubuntu ]]; then apache="apache2" page="horizon"