-
Notifications
You must be signed in to change notification settings - Fork 7
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
feat: create test_analytics app and database #474
base: main
Are you sure you want to change the base?
Conversation
joseph-sentry
commented
Jan 14, 2025
- creates a new test_analytics django app
- modifies the db_settings to declare a new test analytics database
- modifies the db router to route the models from the new django app to the new database
- creates a new test_analytics django app - modifies the db_settings to declare a new test analytics database - modifies the db router to route the models from the new django app to the new database
c6189ed
to
d8c2408
Compare
else: | ||
return "timeseries" | ||
case "test_analytics": | ||
return "test_analytics" |
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.
Unlike timeseries, there's not read replica right
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #474 +/- ##
==========================================
- Coverage 90.28% 89.92% -0.37%
==========================================
Files 427 324 -103
Lines 12836 9150 -3686
Branches 2107 1622 -485
==========================================
- Hits 11589 8228 -3361
+ Misses 1137 859 -278
+ Partials 110 63 -47
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
cace0e8
to
d2c2038
Compare