-
Notifications
You must be signed in to change notification settings - Fork 3
BDMS 412/529/530: water level csv implementation #466
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
Open
jacob-a-brown
wants to merge
36
commits into
water-level-csv
Choose a base branch
from
water-level-csv-refactor
base: water-level-csv
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
36 commits
Select commit
Hold shift + click to select a range
fe3625a
fix: deprecate groundwater level sample matrix
jacob-a-brown 35985cf
feat: test water level bulk upload
jacob-a-brown 70153aa
refactor: use contact fixture for test bulk water level upload
jacob-a-brown 2198e8b
fix: cleanup transfer tests
jacob-a-brown 6a1395e
refactor: update water level bulk upload
jacob-a-brown 53e6a10
Merge branch 'water-level-csv' into water-level-csv-refactor
jacob-a-brown 70d0e31
refactor: remove redundant water level test in CLI
jacob-a-brown 19d597d
feat: test file not found scenario in water level CSV upload
jacob-a-brown fad9f98
feat: implement water level csv unit test for nonexistent well
jacob-a-brown 08e7a60
feat: implement water level csv unit test for bad dtw bgs
jacob-a-brown f0b6b2f
feat: implement water level csv unit test for bad dtw bgs
jacob-a-brown 797dee4
feat: enable all errors in a row to be captured
jacob-a-brown d7f38e8
feat: test invalid field staff names
jacob-a-brown ededb61
fix: remove outdated TODO note
jacob-a-brown c4ae569
refactor: update positive givens for water level csv feature tests
jacob-a-brown d8d0aa3
fix: only process DB validations after Pydantic validation has passed
jacob-a-brown ba27820
feat: add water_level_date_time to water level csv upload response
jacob-a-brown 03f0b3e
fix: update seeding data
jacob-a-brown 64f5ea3
fix: remove measuring_person from scenario since that is not a lexico…
jacob-a-brown 50cfa8d
fix: update test steps to reflect changes in field names
jacob-a-brown 0ac590f
Merge branch 'water-level-csv' into water-level-csv-refactor
jacob-a-brown 4ec2635
Merge branch 'water-level-csv' into water-level-csv-refactor
jacob-a-brown 19306c9
refactor: move common CSV gives to common.py
jacob-a-brown 493f027
Merge branch 'water-level-csv' into water-level-csv-refactor
jacob-a-brown 55ca16f
fix: fix cli test for refactored/updated water level csv handling
jacob-a-brown 64bace0
Formatting changes
jacob-a-brown 5ef609e
Merge branch 'water-level-csv' into water-level-csv-refactor
jacob-a-brown d4acffe
formatting changes
jacob-a-brown 74a06a4
fix: move datetime naive-to-aware test to common.py
jacob-a-brown a1052a4
feat: test invalid "measuring_person" and standardize test verbiage
jacob-a-brown 6aced6c
fix: remove commented-out code
jacob-a-brown 360495a
fix: remove print debugging statement
jacob-a-brown 7debe73
fix: fix spelling typo
jacob-a-brown a8bd3ef
Merge branch 'water-level-csv' into water-level-csv-refactor
jacob-a-brown cfa825c
Merge branch 'water-level-csv' into water-level-csv-refactor
jacob-a-brown 336e741
Merge branch 'water-level-csv' into water-level-csv-refactor
jacob-a-brown 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 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
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
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
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
Oops, something went wrong.
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.
😄
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.
The naming can change as we see fit 😅 . I tried to mimic the nomenclature from when I refactored/updated the
water level csvimplementation. I think originally we were planning to have it work as an API endpoint but now it's being implemented by the CLI, whose "response" we need to define manually.