When running dev-* tests for ceph-ansible PRs we were setting
CEPH_STABLE_RELEASE to 'dev' which is not an actual release and our
functional tests break because of that.
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
;;
esac
done
+if [ "$release" = "dev" ]; then
+ # dev runs will need to be set to the release
+ # that matches what the current ceph master
+ # branch is at
+ local release="nautilus"
+fi
TOX_RUN_ENV=("timeout 3h")
if [ -n "$ceph_docker_image_tag" ]; then
TOX_RUN_ENV=("CEPH_DOCKER_IMAGE_TAG=$ceph_docker_image_tag" "${TOX_RUN_ENV[@]}")