commit | df5f8ee8ee943279be4f9dba12465393fc23fcde | [log] [tgz] |
---|---|---|
author | Filip Pytloun <filip@pytloun.cz> | Thu Apr 14 21:21:10 2016 +0200 |
committer | Filip Pytloun <filip@pytloun.cz> | Thu Apr 14 21:21:12 2016 +0200 |
tree | 7e5dcbb6c51c22816cf31af90c472a335dd1ec06 | |
parent | db203949e0c02bb6e1230ff4c76ad9c23045fc00 [diff] |
Skip tests on old broken salt Salt version 0.17.5 on Ubuntu trusty is giving error retval on rabbitmq tests even when it's passing fine. Simply skip.
diff --git a/debian/rules b/debian/rules index abde6ef..d803593 100755 --- a/debian/rules +++ b/debian/rules
@@ -1,5 +1,12 @@ #!/usr/bin/make -f +SALT_VERSION=$(shell salt-call --version|cut -d ' ' -f 2) + %: dh $@ +override_dh_auto_test: +ifneq ($(SALT_VERSION), 0.17.5) + dh_auto_test +endif +