-
Notifications
You must be signed in to change notification settings - Fork 170
Conversation
Signed-off-by: Thom May <thom@chef.io>
@@ -310,7 +310,7 @@ def git!(cmd) | |||
|
|||
git!("init .") | |||
git!("add .") | |||
git!("commit -m \"initial commit\"") | |||
git!("commit --no-gpg-sign -m \"initial commit\"") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's really, really annoying to have git prompt for a gpg sig for every single rspec test.
@@ -107,6 +107,7 @@ def edit_repo | |||
edit_repo | |||
system_command('git config --local user.name "Alice"', cwd: cookbook_path).error! | |||
system_command('git config --local user.email "alice@example.com"', cwd: cookbook_path).error! | |||
system_command('git config --local commit.gpgsign "false"', cwd: cookbook_path).error! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?
I assume with our new Gemlock stuff that we're not longer going to be bundling this with ChefDK if we turn it back on? |
I assume that too, but I'm gonna do a build on monday to test it. |
Fixes: #1170 |
@thommay Care to rebase and merge? |
@@ -94,6 +94,8 @@ group(:ruby_shadow) do | |||
gem "ruby-shadow", platform: :ruby | |||
end | |||
|
|||
gem "chefstyle", group: :test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could also consider just doing a gem install
in travis and then not using bundle exec
if this winds up ultimately not working for some reason...
No description provided.