-
Notifications
You must be signed in to change notification settings - Fork 9
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
Clean up sample data #969
Clean up sample data #969
Conversation
Rebasing changes to fix conflicts... |
this wasn't being used and adding noise to our PO files and sample migration
more closely resemble production
more closely resemble production
d353323
to
de5fcdf
Compare
@@ -95,35 +95,19 @@ def load_sample_data(app, *args, **kwargs): | |||
EligibilityVerifier = app.get_model("core", "EligibilityVerifier") | |||
|
|||
verifier1 = EligibilityVerifier.objects.create( |
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.
c85f4d2 is the critical commit of the PR - I removed the extra sample verifier we had (previously standing in as a placeholder for the DMV), and moved the existing sample OAuth verifier up and renamed it to verifier1
.
This had a big impact on the PO files
I couldn't get this to run at first... make sure you run |
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.
Following up to #958 - we actually don't need some of the sample data anymore. Also make the sample data we do need more closely align with production data for easier testing.
Part of #776