Skip to content
Snippets Groups Projects
Commit ba04c14e authored by Hans Fangohr's avatar Hans Fangohr
Browse files

fix line length

parent 21875fca
No related branches found
No related tags found
2 merge requests!19Move linux-debian11 into main,!9force `subprocess.run` to check return code is 0
Pipeline #368464 passed
...@@ -38,7 +38,9 @@ def create_mock_git_repository(target_directory, create_directory=True): ...@@ -38,7 +38,9 @@ def create_mock_git_repository(target_directory, create_directory=True):
# that. # that.
user_details = "-c user.name='Tes Ta' -c user.email='tester@some-ci.org'" user_details = "-c user.name='Tes Ta' -c user.email='tester@some-ci.org'"
subprocess.run( subprocess.run(
f'git {user_details} commit -m "first commit" readme.txt', shell=True, check=True f'git {user_details} commit -m "first commit" readme.txt',
shell=True,
check=True,
) )
......
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