-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Fix the error for directory separator #34390
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
Conversation
|
Assigning reviewers. If you would like to opt out of this review, comment R: @shunping for label python. Available commands:
The PR bot will only process comments in the main thread (not review comments). |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #34390 +/- ##
============================================
- Coverage 56.37% 56.37% -0.01%
Complexity 3285 3285
============================================
Files 1174 1174
Lines 179353 179362 +9
Branches 3398 3398
============================================
+ Hits 101119 101122 +3
- Misses 74974 74980 +6
Partials 3260 3260
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
| "when calling ReadFromText") | ||
|
|
||
| with unittest.mock.patch('os.path.dirname') as mock_dirname: | ||
| mock_dirname.side_effect = TypeError(expected_error_message) |
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.
Is it possible to actually cause this error, instead? Mocking makes the test possibly masking things if the presumed behavior of os.path.dirname is not quite right, or if it changes.
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 code changes are quite clear in sdks/python/apache_beam/io/textio.py. We mock TypeError and then this causes the OS error since the test file does not exist. This mainly tests TypeError is captured and passes.
| try: | ||
| if not os.path.dirname(file_pattern): | ||
| file_pattern = os.path.join('.', file_pattern) | ||
| except TypeError: |
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.
Seems like a very broad exception catch. What is the failure mode that you are handling?
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.
file_pattern coud be passed in as other types, for example, ValueProvider.
added virtualenv-clone
* Create a varint32 coder and used it for RowCoder * Fix checks * Handle a race when multiple process downloading jar at the same time
This will allow other users to replace the default sql provider used by 'Join' and 'Combine-sql'.
…t stream to prevent precondition exception on reuse (apache#34418)
…#34416) Bumps [github.com/aws/aws-sdk-go-v2/feature/s3/manager](https://github.com/aws/aws-sdk-go-v2) from 1.17.62 to 1.17.67. - [Release notes](https://github.com/aws/aws-sdk-go-v2/releases) - [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json) - [Commits](aws/aws-sdk-go-v2@credentials/v1.17.62...feature/s3/manager/v1.17.67) --- updated-dependencies: - dependency-name: github.com/aws/aws-sdk-go-v2/feature/s3/manager dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [github.com/aws/aws-sdk-go-v2/credentials](https://github.com/aws/aws-sdk-go-v2) from 1.17.63 to 1.17.64. - [Release notes](https://github.com/aws/aws-sdk-go-v2/releases) - [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json) - [Commits](aws/aws-sdk-go-v2@credentials/v1.17.63...credentials/v1.17.64) --- updated-dependencies: - dependency-name: github.com/aws/aws-sdk-go-v2/credentials dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Naireen <[email protected]>
#34364 reverted the PR.
Thank you for your contribution! Follow this checklist to help us incorporate your contribution quickly and easily:
addresses #123), if applicable. This will automatically add a link to the pull request in the issue. If you would like the issue to automatically close on merging the pull request, commentfixes #<ISSUE NUMBER>instead.CHANGES.mdwith noteworthy changes.See the Contributor Guide for more tips on how to make review process smoother.
To check the build health, please visit https://github.com/apache/beam/blob/master/.test-infra/BUILD_STATUS.md
GitHub Actions Tests Status (on master branch)
See CI.md for more information about GitHub Actions CI or the workflows README to see a list of phrases to trigger workflows.