Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 1ecbc7c

Browse filesBrowse files
authored
Merge pull request #2173 from python-gitlab/jlvillal/config_test_fix
test: fix broken test if user had config files
2 parents 7afd340 + 864fc12 commit 1ecbc7c
Copy full SHA for 1ecbc7c

File tree

Expand file treeCollapse file tree

1 file changed

+6
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+6
-1
lines changed
Open diff view settings
Collapse file

‎tests/unit/test_gitlab.py‎

Copy file name to clipboardExpand all lines: tests/unit/test_gitlab.py
+6-1Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import logging
2121
import pickle
2222
from http.client import HTTPConnection
23+
from typing import List, Optional, Union
2324

2425
import pytest
2526
import responses
@@ -300,7 +301,11 @@ def test_gitlab_from_config(default_config):
300301
gitlab.Gitlab.from_config("one", [config_path])
301302

302303

303-
def test_gitlab_from_config_without_files_raises():
304+
def test_gitlab_from_config_without_files_raises(monkeypatch):
305+
def no_files(config_files: Optional[List[str]] = None) -> Union[str, List[str]]:
306+
return []
307+
308+
monkeypatch.setattr(gitlab.config, "_get_config_files", no_files)
304309
with pytest.raises(GitlabConfigMissingError, match="non-existing"):
305310
gitlab.Gitlab.from_config("non-existing")
306311

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.