-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove bundler-audit from codeclimate tests
We have much better ways of identifying vulnerabilities these days through github, and in any case this fails because codeclimate requires a Gemfile.lock and ours isn't committed (yet? I'm not sure if it should be or not). Also regenerate and encrypt the codeclimate token. Apparently it's not essential that this should be private, but it's easy to do, so why not.
- Loading branch information
Showing
2 changed files
with
4 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,6 @@ engines: | |
enabled: true | ||
csslint: | ||
enabled: true | ||
bundler-audit: | ||
enabled: true | ||
ratings: | ||
paths: | ||
- "**.rb" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
bundler_args: --without debug | ||
bundler_args: "--without debug" | ||
cache: bundler | ||
script: "bundle exec rake test" | ||
|
||
script: bundle exec rake test | ||
rvm: | ||
- 2.6.7 | ||
- 2.7.3 | ||
|
||
gemfile: | ||
- gemfiles/rails_5.gemfile | ||
- gemfiles/rails_6.gemfile | ||
|
||
addons: | ||
code_climate: | ||
repo_token: 7e7ee66c976bdfe7a0d40d41958b97a1cf8a03b0462df5cba415f624c07c2071 | ||
repo_token: | ||
secure: WBszVdtEvWM2KugFre9BpwkCduY6hjrmK7xo1GLiru4NMqr4ZoRXruQ5ijhZE79YqduR6zudKr72g9yG4R+4CK7ghYu4x5JB76IW8gFWpI9teTWrF4hdSbJgwxSH5JNkqWF4f6ic4Xr1Vgc43agzt+1KmA9imoGs2Q0EbAY3H2M= |