tests: Update Makefile for testing and remove Pipfile and Pipfile.lock#62
Open
tests: Update Makefile for testing and remove Pipfile and Pipfile.lock#62
Conversation
- Added `init` and `test` targets to the Makefile for setting up the development environment and running end-to-end tests with pytest. - Removed `Pipfile` and `Pipfile.lock` as they are no longer needed. - Updated test files to use a dynamic port configuration instead of hardcoded values for better flexibility.
- Removed redundant test cases from `select_test.py` to streamline testing. - Updated expected output values in `show_test.py` for accuracy and consistency. - Enhanced the parameterized test cases to reflect the latest schema changes.
- Modified SQL queries in `select_test.py` to include dynamic table references using `utils.SET_NAME`. - Removed unnecessary index creation calls to streamline the setup process for tests.
- Introduced new sindex creation calls in `select_test.py` for "a-int-index-no-set" and "b-int-index-no-set" to enhance test coverage. - This change aims to ensure that tests can run without relying on predefined sets, improving flexibility in test scenarios.
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.
initandtesttargets to the Makefile for setting up the development environment and running end-to-end tests with pytest.PipfileandPipfile.lockas they are no longer needed.