Split SQL tests into core, integration, and performance suites#57
Merged
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Motivation
test-core).RUN_INTEGRATION,RUN_PERF).Description
makefileto introduceCORE_TESTS,INTEGRATION_TESTS, andPERFORMANCE_TESTS, and kept a backward-compatibleTESTSaggregate.test-core,test-integration,test-performance, andtest-all, and made the defaulttesttarget an alias fortest-core.test-integrationrequiresRUN_INTEGRATION=1andtest-performancerequiresRUN_PERF=1, and each target prints a skip message when the flag is not set..github/workflows/ci.ymlto runtest-coreon push/pull_request and to run integration/performance suites only on schedule or manual dispatch, and expandedREADME.mdwith suite descriptions, expected runtimes, prerequisites, and example commands (e.g.make test-core,RUN_INTEGRATION=1 make test-integration).Testing
make test-integration && make test-performance && make -n test-coreto ensure the gating and default alias behave as intended./usr/lib/postgresql/.../pgxs.mk: No such file or directory), so the automated test commands did not execute here.test-coreon push/PR and will run slow suites on schedule or when manually dispatched, where those jobs will exercise the opt-in behavior and environment flags.Codex Task