Best Python code snippet using tempest_python
check_uuid.py
Source:check_uuid.py
...71class TestChecker(object):72 def __init__(self, package):73 self.package = package74 self.base_path = os.path.abspath(os.path.dirname(package.__file__))75 def _path_to_package(self, path):76 relative_path = path[len(self.base_path) + 1:]77 if relative_path:78 return '.'.join((self.package.__name__,) +79 tuple(relative_path.split('/')))80 else:81 return self.package.__name__82 def _modules_search(self):83 """Recursive search for python modules in base package"""84 modules = []85 for root, dirs, files in os.walk(self.base_path):86 if not os.path.exists(os.path.join(root, '__init__.py')):87 continue88 root_package = self._path_to_package(root)89 for item in files:90 if item.endswith('.py'):91 module_name = '.'.join((root_package,92 os.path.splitext(item)[0]))93 if not module_name.startswith(UNIT_TESTS_EXCLUDE):94 modules.append(module_name)95 return modules96 @staticmethod97 def _get_idempotent_id(test_node):98 """99 Return key-value dict with all metadata from @test.idempotent_id100 decorators for test method101 """102 idempotent_id = None...
to_minio.py
Source:to_minio.py
1from datetime import datetime, timedelta2import logging3import os4from minio import Minio5from minio.error import ResponseError6from dotenv import load_dotenv7from pathlib import Path8env_path = Path("environment/minio.env")9load_dotenv(dotenv_path=env_path)10_MINIO_ACCESS_KEY = os.getenv("MINIO_ACCESS_KEY")11_MINIO_SECRET_KEY = os.getenv("MINIO_SECRET_KEY")12_DOCKER_BUCKET = os.getenv("DOCKER_BUCKET")13_PYTHON_BUCKET = os.getenv("PYTHON_BUCKET")14_PYTHON_PACKAGE = "Hello_Universe-0.0.1.tar.gz"15_PATH_TO_PACKAGE = "package/dist/"16minioClient = Minio(17 "172.20.0.2:9000", 18 access_key=_MINIO_ACCESS_KEY, 19 secret_key=_MINIO_SECRET_KEY, 20 secure=False21 )22if not minioClient.bucket_exists(_PYTHON_BUCKET):23 minioClient.make_bucket(_PYTHON_BUCKET)24 print("Bucket " + _PYTHON_BUCKET + " created\n")25else:26 print("Bucket " + _PYTHON_BUCKET + " already exists\n")27minioClient.fput_object(28 bucket_name=_PYTHON_BUCKET, 29 object_name=_PYTHON_PACKAGE, 30 file_path=_PATH_TO_PACKAGE + _PYTHON_PACKAGE31 )32objects = minioClient.list_objects(bucket_name=_PYTHON_BUCKET)33for object in objects:...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!