From 0b1c4c551be48d18c309ed1a090b9587036c408d Mon Sep 17 00:00:00 2001 From: vermeul <swen@ethz.ch> Date: Sat, 14 Sep 2019 00:34:58 +0200 Subject: [PATCH] added localhost:20000 to conftest --- pybis/src/python/tests/conftest.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pybis/src/python/tests/conftest.py b/pybis/src/python/tests/conftest.py index 677de709a3f..1568409e701 100644 --- a/pybis/src/python/tests/conftest.py +++ b/pybis/src/python/tests/conftest.py @@ -3,9 +3,12 @@ import time 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' +openbis_url = 'http://localhost:20000' +admin_username = 'openbis_test_js' +admin_password = 'password' @pytest.yield_fixture(scope="module") def openbis_instance(): -- GitLab