X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=Automation%2FTests%2FResource%2Fscripts.py;fp=Automation%2FTests%2FResource%2Fscripts.py;h=49ebca55c69a78a63aa08b0bcc995e71aa1ca950;hb=e7dbffd3fba8d9721a1a713ae0383f52893eb281;hp=0000000000000000000000000000000000000000;hpb=b2e5e2b6d746c95f64a68631bb41b2f63a247daf;p=ric-plt%2Fe2mgr.git diff --git a/Automation/Tests/Resource/scripts.py b/Automation/Tests/Resource/scripts.py new file mode 100644 index 0000000..49ebca5 --- /dev/null +++ b/Automation/Tests/Resource/scripts.py @@ -0,0 +1,33 @@ +############################################################################## +# +# Copyright (c) 2019 AT&T Intellectual Property. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +############################################################################## +import config +import redis + + +def flush(): + + c = config.redis_ip_address + + p = config.redis_ip_port + + r = redis.Redis(host=c, port=p, db=0) + + r.flushall() + + return True +