-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Makefile to circumvent broken
delivery local
- Loading branch information
Showing
2 changed files
with
12 additions
and
7 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
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,25 +1,26 @@ | ||
.PHONY: install outdated test lint vendor | ||
.PHONY: install outdated test integration_test unit_test lint syntax all_tests vendor | ||
|
||
install: | ||
berks install | ||
|
||
outdated: | ||
berks outdated | ||
|
||
test: | ||
kitchen verify | ||
test: integration_test | ||
|
||
integration_test: | ||
kitchen test | ||
kitchen verify | ||
|
||
unit_test: | ||
delivery local unit | ||
chef exec rspec spec/ | ||
|
||
lint: | ||
delivery local lint | ||
chef exec cookstyle | ||
|
||
syntax: | ||
delivery local syntax | ||
chef exec foodcritic . --exclude spec -f any # -t \"~FC064\" -t \"~FC065\" | ||
|
||
all_tests: lint syntax unit_test integration_test | ||
|
||
vendor: install | ||
./vendor_berks_cookbooks.sh |