forked from TrueCloudLab/frostfs-testcases
Merged in features/neo-rpc (pull request #2)
Object user scenarios and DevEnv integration * Object user scenarios and DevEnv integration.
This commit is contained in:
parent
d69f277eb7
commit
029693653e
17 changed files with 1100 additions and 90 deletions
30
robot/resources/lib/environment.py
Normal file
30
robot/resources/lib/environment.py
Normal file
|
@ -0,0 +1,30 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
import subprocess
|
||||
import re
|
||||
import os
|
||||
import shutil
|
||||
import json
|
||||
import binascii
|
||||
import time
|
||||
|
||||
|
||||
from robot.api.deco import keyword
|
||||
from robot.api import logger
|
||||
|
||||
import robot.errors
|
||||
import requests
|
||||
import uuid
|
||||
from robot.libraries.BuiltIn import BuiltIn
|
||||
|
||||
ROBOT_AUTO_KEYWORDS = False
|
||||
|
||||
@keyword('Prepare Environment')
|
||||
def prepare_environment():
|
||||
return
|
||||
|
||||
|
||||
@keyword('Cleanup Environment')
|
||||
def cleanup_environment():
|
||||
return
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue