-
Notifications
You must be signed in to change notification settings - Fork 1
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
Export current extract parquet files over FTPS #264
Merged
Merged
Changes from 25 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
99bbc0b
Rough sketch of parquet FTP upload testing
milanmlft e929d11
Replace SendViaStow with SendViaFTPS
ruaridhg 5ce99a6
pair prog switchover
ruaridhg b794e1b
pair prog switchover
ruaridhg e238b26
Basic upload tested
stefpiatek 97f700f
Ensure exception thrown if no files in export
stefpiatek afdbb4e
tidy up
ruaridhg 94f5572
deleting mounted data in tests through docker
ruaridhg 4a67a38
tidy up
ruaridhg 325fecc
Adapt fixtures to new ParquetExport
ruaridhg e1f8157
pair prog
ruaridhg 48d2dc1
fix[core]: tests leaving files
peshence 23f6253
Fix ruff and remove comments
ruaridhg d9a769a
Suggestions from PR review
ruaridhg 226e18d
Update ref to pixl_ehr function
ruaridhg 42675b6
send_via_ftps added to single API endpoint
ruaridhg 0fd1029
fix Path type
ruaridhg 943f127
Add missing environment variables in test fixture
milanmlft c89cf94
Add ftp-server to `pixl_ehr` tests
milanmlft 2043805
Moved export radiology into separate function
ruaridhg fd1c968
Updated ehr api name
ruaridhg ee457b6
Merge branch 'main' into milanmlft/radiology-upload-ftps
milanmlft d60db3e
Merge branch 'main' into milanmlft/radiology-upload-ftps
milanmlft bbaac38
Remove ftp-server setup in `pixl_ehr`
milanmlft 2946946
updated error message
ruaridhg 0930771
Oly clean up exported files after successful test
milanmlft fd14efe
Better variable names
milanmlft bfa9998
Remove unused import
milanmlft 906b4df
Check successful upload of parquet files to FTPS
milanmlft 14d3c67
Reduce complexity, improve docstrings
milanmlft 4de546e
Bug fix: set `current_extract` to the correct directory
milanmlft 010cf9a
Merge branch 'main' into milanmlft/radiology-upload-ftps
milanmlft 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 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 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 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 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 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 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.
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.
I think this test is still calling
export_radiology_as_parquet
below and notexport_patient_data
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 assumed this is what you meant by having
export_radiology_as_parquet
andsend_via_ftps
as separate functions called in a single API endpoint i.e.export_patient_data
but testing justexport_radiology_as_parquet
intest_processing
since send via ftps is tested elsewhere