diff --git a/pybis/src/python/tests/conftest.py b/pybis/src/python/tests/conftest.py index 4a9878fbdd347158676f48af1c96bd14a04d125f..c1f92f016702e5d8465132ba458b12535e1043af 100644 --- a/pybis/src/python/tests/conftest.py +++ b/pybis/src/python/tests/conftest.py @@ -1,18 +1,33 @@ -import pytest +import os import time +import pytest from pybis import Openbis -openbis_url = 'https://localhost:8443' -admin_username = 'admin' -admin_password = 'changeit' + +openbis_url = "https://localhost:8443" +admin_username = "admin" +admin_password = "changeit" + @pytest.fixture(scope="module") def openbis_instance(): instance = Openbis( - url=openbis_url, - verify_certificates=False, - #allow_http_but_do_not_use_this_in_production_and_only_within_safe_networks=True + url=openbis_url, + verify_certificates=False, + ) + print("\nLOGGING IN...") + instance.login(admin_username, admin_password) + yield instance + instance.logout() + print("LOGGED OUT...") + + +@pytest.fixture(scope="module") +def other_openbis_instance(): + instance = Openbis( + url=openbis_url, + verify_certificates=False, ) print("\nLOGGING IN...") instance.login(admin_username, admin_password) @@ -24,15 +39,14 @@ def openbis_instance(): @pytest.fixture(scope="module") def space(): o = Openbis( - url=openbis_url, - verify_certificates=False, - #allow_http_but_do_not_use_this_in_production_and_only_within_safe_networks=True + url=openbis_url, + verify_certificates=False, ) o.login(admin_username, admin_password) # create a space - timestamp = time.strftime('%a_%y%m%d_%H%M%S').upper() - space_name = 'test_space_' + timestamp + timestamp = time.strftime("%a_%y%m%d_%H%M%S").upper() + space_name = "test_space_" + timestamp space = o.new_space(code=space_name) space.save() space_exists = o.get_space(code=space_name)