Skip to content

Commit

Permalink
Removing engine option.
Browse files Browse the repository at this point in the history
Signed-off-by: sreepuramsudheer <[email protected]>
  • Loading branch information
sreepuramsudheer committed Jan 3, 2025
1 parent 7112bdc commit 3eae4a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/oc_bifrost/schema/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ setup:
@createdb $(TEST_DB)
@psql --dbname $(TEST_DB) --command 'CREATE EXTENSION pgtap;'
@psql --dbname $(TEST_DB) --single-transaction --set ON_ERROR_STOP=1 --file t/custom_test_functions.sql
@sqitch --engine pg --db-name $(TEST_DB) deploy
@sqitch --db-name $(TEST_DB) deploy
@psql --dbname $(TEST_DB) --single-transaction --set ON_ERROR_STOP=1 --file sql/create_roles.sql
@psql --dbname $(TEST_DB) --single-transaction --set ON_ERROR_STOP=1 --set database_name=$(TEST_DB) --file sql/permissions.sql

Expand Down
2 changes: 1 addition & 1 deletion src/oc_erchef/schema/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ all : setup_schema setup_tests test
setup_schema:
$(MAKE) -C baseline setup_schema
@echo "Deploying Enterprise Chef Server Schema on top..."
@sqitch --engine pg --db-name $(TEST_DB) deploy --verify
@sqitch --db-name $(TEST_DB) deploy --verify

# Load up all testing functions. pgTAP libraries and open source
# schema test functions are loaded by the open source makefile target
Expand Down
2 changes: 1 addition & 1 deletion src/oc_erchef/schema/baseline/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ setup_schema:
@echo "Dropping and recreating database '$(TEST_DB)'"
@psql --dbname template1 --command 'DROP DATABASE IF EXISTS $(TEST_DB)'
@createdb $(TEST_DB)
@sqitch --engine pg --db-name $(TEST_DB) deploy
@sqitch --db-name $(TEST_DB) deploy

setup_tests:
@psql --dbname $(TEST_DB) --command 'CREATE EXTENSION pgtap;'
Expand Down

0 comments on commit 3eae4a2

Please sign in to comment.