-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add clearer directions for custom test suite vars in Makefile. #6764
Merged
VersusFacit
merged 8 commits into
main
from
CT-1874/adjust_makefile_integration_test_job
Jan 31, 2023
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
36b8173
Add clearer directions for custom test suite vars in Makefile.
VersusFacit 178edd8
Fix up PR for review
VersusFacit 9c1ac39
Fix erroneous whitespace.
VersusFacit 638e43f
Fix a spelling error.
VersusFacit fa423a4
Add documentation to discourage makefile edits but provide override t…
VersusFacit 0304b61
Fix quotation marks. Very strange behavior
VersusFacit ffb3e42
Compact code and verify quotations happy inside bash and python.
VersusFacit 7e2cbb9
Fold comments into Makefile.
VersusFacit File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
kind: Features | ||
body: Adjust makefile to have clearer instructions for CI env var changes. | ||
time: 2023-01-26T15:47:16.887327-08:00 | ||
custom: | ||
Author: versusfacit | ||
Issue: "6689" |
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 |
---|---|---|
|
@@ -51,6 +51,7 @@ coverage.xml | |
*,cover | ||
.hypothesis/ | ||
test.env | ||
makefile.test.env | ||
*.pytest_cache/ | ||
|
||
|
||
|
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,18 +6,26 @@ ifeq ($(USE_DOCKER),true) | |
DOCKER_CMD := docker-compose run --rm test | ||
endif | ||
|
||
LOGS_DIR := ./logs | ||
# | ||
# To override CI_flags, create a file at this repo's root dir named `makefile.test.env`. Fill it | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Doug and I decided for now it's better to just have this note here, since anyone interested in overriding the Makefile would be the type of person who needs this information. Better not to clutter the |
||
# with any ENV_VAR overrides required by your test environment, e.g. | ||
# DBT_TEST_USER_1=user | ||
# LOG_DIR="dir with a space in it" | ||
# | ||
# Warn: Restrict each line to one variable only. | ||
# | ||
ifeq (./makefile.test.env,$(wildcard ./makefile.test.env)) | ||
include ./makefile.test.env | ||
endif | ||
|
||
# Optional flag to invoke tests using our CI env. | ||
# But we always want these active for structured | ||
# log testing. | ||
CI_FLAGS =\ | ||
DBT_TEST_USER_1=dbt_test_user_1\ | ||
DBT_TEST_USER_2=dbt_test_user_2\ | ||
DBT_TEST_USER_3=dbt_test_user_3\ | ||
RUSTFLAGS="-D warnings"\ | ||
LOG_DIR=./logs\ | ||
DBT_LOG_FORMAT=json | ||
DBT_TEST_USER_1=$(if $(DBT_TEST_USER_1),$(DBT_TEST_USER_1),dbt_test_user_1)\ | ||
DBT_TEST_USER_2=$(if $(DBT_TEST_USER_2),$(DBT_TEST_USER_2),dbt_test_user_2)\ | ||
DBT_TEST_USER_3=$(if $(DBT_TEST_USER_3),$(DBT_TEST_USER_3),dbt_test_user_3)\ | ||
RUSTFLAGS=$(if $(RUSTFLAGS),$(RUSTFLAGS),"-D warnings")\ | ||
LOG_DIR=$(if $(LOG_DIR),$(LOG_DIR),./logs)\ | ||
DBT_LOG_FORMAT=$(if $(DBT_LOG_FORMAT),$(DBT_LOG_FORMAT),json) | ||
|
||
|
||
.PHONY: dev_req | ||
dev_req: ## Installs dbt-* packages in develop mode along with only development dependencies. | ||
|
@@ -66,7 +74,7 @@ test: .env ## Runs unit tests with py and code checks against staged changes. | |
.PHONY: integration | ||
integration: .env ## Runs postgres integration tests with py-integration | ||
@\ | ||
$(if $(USE_CI_FLAGS), $(CI_FLAGS)) $(DOCKER_CMD) tox -e py-integration -- -nauto | ||
$(CI_FLAGS) $(DOCKER_CMD) tox -e py-integration -- -nauto | ||
|
||
.PHONY: integration-fail-fast | ||
integration-fail-fast: .env ## Runs postgres integration tests with py-integration in "fail fast" mode. | ||
|
@@ -76,9 +84,9 @@ integration-fail-fast: .env ## Runs postgres integration tests with py-integrati | |
.PHONY: interop | ||
interop: clean | ||
@\ | ||
mkdir $(LOGS_DIR) && \ | ||
mkdir $(LOG_DIR) && \ | ||
$(CI_FLAGS) $(DOCKER_CMD) tox -e py-integration -- -nauto && \ | ||
LOG_DIR=$(LOGS_DIR) cargo run --manifest-path test/interop/log_parsing/Cargo.toml | ||
LOG_DIR=$(LOG_DIR) cargo run --manifest-path test/interop/log_parsing/Cargo.toml | ||
|
||
.PHONY: setup-db | ||
setup-db: ## Setup Postgres database with docker-compose for system testing. | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Collapsed this variable into the
LOG_DIR
variable used in our CI