1 2 3 4 5 6 7 8 9 10 11 12
import pytest import gitlab @pytest.fixture def gl(): return gitlab.Gitlab( "http://localhost", private_token="private_token", ssl_verify=True, api_version=4, )