Enable SQLite db_type in both app and test - #112
Open
AlezHibali wants to merge 1 commit into
Open
AlezHibali wants to merge 1 commit into
AlezHibali wants to merge 1 commit into
Conversation
|
Really useful. |
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.
This PR aims to enable SQLite
db_typein both flask app and pytest. The final code runs without bugs and passes all 16 tests.Issue:
When running in an environment where no database type (MySQL, Postgresql, etc.) is configured, the project will fail at the database setup. For my Windows11, I did not download MySQL and thus opening my
services.mscresults in no service on MySQL. This will lead toCan't connect to MySQL server on '127.0.0.1' ([WinError 10061] 由于目标计算机积极拒绝,无法连接。in English would beThe error (2003) Can't connect to MySQL server on 'server' (10061) indicates that the network connection has been refused.How do I fix:
I modified the settings.py to allow a SQLite database type and I set the default
db_typeto SQLite. After solving this, users could run the project without downloading any database services.Below is the code snippet of changes: