diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-08-02 11:20:15 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-08-02 11:20:15 +0200 |
commit | 9d1787820b9811d06f0aff9448f419c72f7aa39c (patch) | |
tree | 585ff22999561c30c3e1679c7f57b8fa61417815 /tests/ci.testscript | |
parent | cf98cf8fd3f7b10b3eceddb2d99b78601c9cd719 (diff) |
Add --no-verify to git commit commands in tests
Diffstat (limited to 'tests/ci.testscript')
-rw-r--r-- | tests/ci.testscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ci.testscript b/tests/ci.testscript index bc3174f..2348cce 100644 --- a/tests/ci.testscript +++ b/tests/ci.testscript @@ -32,7 +32,7 @@ g = git -C prj 2>! >&2 +$g config user.email 'testscript@example.com' +$g remote add origin $~/prj.git +$g add '*' -+$g commit -m 'Create' ++$g commit -m 'Create' --no-verify +$g push --set-upstream origin master # Repository the CI-ed packages come from. |