Tox + Integration testing
[osm/N2VC.git] / tests / charms / layers / metrics-proxy-ci / reactive / metrics_ci.py
1 from charmhelpers.core.hookenv import (
2 status_set,
3 )
4 from charms.reactive import (
5 set_flag,
6 when_not,
7 )
8
9
10 @when_not('metrics-ci.installed')
11 def install_metrics_ci():
12 status_set('blocked', "Waiting for SSH credentials.")
13 set_flag('metrics-ci.installed')