add an assignee to the settings

This commit is contained in:
Andreas Zweili 2021-11-06 20:04:11 +01:00
parent 1e9b670661
commit dce2ed8282
2 changed files with 3 additions and 1 deletions

View File

@ -5,4 +5,5 @@ def test_settings():
config = settings.read_config("todoist_interface.yml.example")
assert (config["gitlab"]["token"] == "gitlabtoken"
and config["gitlab"]["url"] == "https://gitlab.example.com/api/v4/"
and config["todoist"]["token"] == "todoisttoken")
and config["todoist"]["token"] == "todoisttoken"
and config["gitlab"]["assignee"] == "muster")

View File

@ -1,6 +1,7 @@
gitlab:
url: "https://gitlab.example.com/api/v4/"
token: "gitlabtoken"
assignee: "muster"
todoist:
token: "todoisttoken"