DEVX-150: feat(setup): mirror Ansible collections from Gitea registry #244

Closed
gitea-admin wants to merge 28 commits from DEVX-152-molecule-destroy-on-failure into master
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 60f33ce1dc - Show all commits
+1 -1
View File
@@ -419,7 +419,7 @@ class VikunjaClient:
def __init__(self, base_url: str, token: str) -> None:
self._base_url = base_url.rstrip("/")
self._session = requests.Session()
self._session.headers.update({"Authorization": f"Bearer {token}"})
self._session.headers.update({"Authorization": token})
def _request(self, method: str, path: str, **kwargs: Any) -> requests.Response:
url = f"{self._base_url}{path}"
+1 -1
View File
@@ -606,7 +606,7 @@ class TestVikunjaClient:
def test_init_sets_headers(self) -> None:
client = VikunjaClient("https://work.example.com", "tok")
assert client._base_url == "https://work.example.com"
assert client._session.headers["Authorization"] == "Bearer tok"
assert client._session.headers["Authorization"] == "tok"
def test_list_tasks(self) -> None:
client = VikunjaClient("https://work.example.com", "tok")