-
Notifications
You must be signed in to change notification settings - Fork 4
Update well inventory CSV feature header expectations #595
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,3 @@ | ||
| @production | ||
| @backend | ||
| @cli | ||
| @BDMS-TBD | ||
|
|
@@ -123,7 +122,6 @@ Feature: Bulk upload well inventory from CSV via CLI | |
| | well_hole_status | | ||
| | well_status | | ||
| | monitoring_frequency | | ||
| | monitoring_status | | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The users do not want a separate field for monitoring_status. They want to combine the monitoring frequency and monitoring status in the same way as on the well inventory form. The backend will just need to parse the monitoring_frequency column and save data to the appropriate database fields. The csv does not need to be a 1:1 reflection of the database |
||
| | sampling_scenario_notes | | ||
| | well_notes | | ||
| | well_measuring_notes | | ||
|
|
||
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.
I checked the
Run BDD testsstep in.github/workflows/tests.yml(line 189), which runsbehavewith--tags="@backend and @production and not @skip"; removing the file-level@productiontag here means every scenario in this feature is now excluded from that CI suite. This silently drops coverage for the well-inventory CSV flow and can allow regressions in production-gated behavior to merge undetected unless@productionis added back (file-level or scenario-level).Useful? React with 👍 / 👎.