Skip to content

Commit 95555be

Browse files
gpongelliLee-W
authored andcommitted
use same mail and name as signer info to fix macos
1 parent bed207b commit 95555be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎tests/conftest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ def tmp_commitizen_project(tmp_git_project):
2727
@pytest.fixture(scope="function")
2828
def tmp_commitizen_project_with_gpg(tmp_commitizen_project):
2929
_gpg_file = tmp_commitizen_project.join("gpg_setup")
30-
_signer_mail = "joe@foo.bar"
30+
_signer_mail = "action@github.com"
3131
with open(_gpg_file, "w", newline="") as f:
3232
f.write("Key-Type: default" + os.linesep)
3333
f.write("Subkey-Type: default" + os.linesep)
34-
f.write("Name-Real: Joe Tester" + os.linesep)
34+
f.write("Name-Real: GitHub Action" + os.linesep)
3535
f.write("Name-Comment: with stupid passphrase" + os.linesep)
3636
f.write(f"Name-Email: {_signer_mail}" + os.linesep)
3737
f.write("Expire-Date: 1" + os.linesep)

0 commit comments

Comments
 (0)