-
Notifications
You must be signed in to change notification settings - Fork 13
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
Feature/sqlite repo #71
Open
codecakes
wants to merge
38
commits into
main
Choose a base branch
from
feature/sqlite-repo
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
fb8da82
Checks for correct signature used by the implementation class.
codecakes dbf8df1
Implements signatures for functional and decoupled GeolocationQuerySe…
codecakes bfa02f9
adds make test
codecakes d5ff73a
Merge branch 'main' into feature-location-impl
codecakes a55413c
ensure signature type checks for interface implementations
codecakes e288445
refactoring project structure to match a more decoupled logic away fr…
codecakes d1c733f
added todos command to check all TODOs in project. updated repository…
codecakes ad6805e
refactored code to adhere to interface requirements and implement mis…
codecakes b296d89
Merge branch 'main' into feature-location-impl
codecakes e99d741
update libraries for adding sqlite orm support
codecakes 59fbde7
Merge branch 'main' into feature-location-impl
codecakes 4f24bd9
added support libraries
codecakes ef85176
implements configure_database_session(services, settings) and on_start
codecakes 3d3ff7c
Merge branch 'main' into feature/sqlite-repo
codecakes 962a1da
Merge branch 'main' into feature/sqlite-repo
codecakes 916defe
refactored unit tests to have dummy functions move to conftest. fix t…
codecakes 22e14e3
refactors dummy tests, removed to conftest. make test works. added te…
codecakes 00d5884
Merge branch 'main' into feature/sqlite-repo
codecakes 90cb943
fix typo
codecakes a180a72
updated how tests are run to include make test which sets necessary e…
codecakes a7d58c9
Merge remote-tracking branch 'ssh' into feature/sqlite-repo
codecakes 5d79824
added changes to support api and integration tests
codecakes c576c43
added sqlite models to support sqlite database. database.py enhances …
codecakes fca13b0
removed obsolete trigger functions
codecakes c8f23f9
major rewrite of test services for integration test for Sqlite Repo D…
codecakes 39bbd27
Merge branch 'main' into feature/sqlite-repo
codecakes 5ddf9ad
refactored into setUpTestDatabase class for DRY
codecakes 3d15a1f
WIP test_fetch_facilities integration test
codecakes 87265fd
Feature/sqlite repo: setup for GeoLocationServiceSqlRepoDBTest (#68)
codecakes fbb2c0a
Merge branch 'main' into feature/sqlite-repo
codecakes 0dd37fb
added docstrings, TODO explainer and specific exception
codecakes a6f45ed
Merge branch 'main' into feature/sqlite-repo
codecakes 938b62f
Fix: Removed commented out line in pyproject.toml and setup project i…
JiyaGupta-cs 210d0c6
updated promotion product messaging
codecakes e19185b
adds docker support for integration testing and running containerized…
codecakes 71f5c43
these changes reflect a working spatialite extension to sqlite. the t…
codecakes b98428a
WIP: Feature/fix infra spatialite (#79)
codecakes 4354017
Merge branch 'main' into feature/sqlite-repo
codecakes 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
Oops, something went wrong.
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.
suggestion: Consider implementing explicit error handling for database setup operations.
Wrapping the operations in a try-except block would make error handling more robust and aid in debugging if issues occur during database setup.