Skip to content
Snippets Groups Projects
Verified Commit 6e5dd555 authored by Antoine Lambert's avatar Antoine Lambert
Browse files

test_directory: Ensure to not sign commits

It can lead to test failures if commit signing is
globally enabled in git configuration.
parent 298f2340
No related branches found
No related tags found
1 merge request!194Bunch of small fixes (fake8, mypy, tests)
Pipeline #12656 passed
......@@ -336,6 +336,11 @@ def test_loader_git_directory_without_or_with_submodule(
check=True,
cwd=repo.path,
)
run(
["git", "config", "commit.gpgsign", "false"],
check=True,
cwd=repo.path,
)
# add the repository served by the simple_git_repository_url fixture as a
# submodule in it
run(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment