[
https://issues.apache.org/jira/browse/BEAM-10766?focusedWorklogId=473478&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-473478
]
ASF GitHub Bot logged work on BEAM-10766:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 21/Aug/20 23:12
Start Date: 21/Aug/20 23:12
Worklog Time Spent: 10m
Work Description: youngoli commented on pull request #12666:
URL: https://github.com/apache/beam/pull/12666#issuecomment-678552214
Yeah, the PythonDocs failure is a test suite that was added on master after
the release branch was cut, so it's failing because the release branch is
missing the test target. Since it's not part of the release we can just ignore
it completely.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 473478)
Time Spent: 1h 50m (was: 1h 40m)
> NativeTypeCompatibilityTest.test_convert_to_beam_types flake
> ------------------------------------------------------------
>
> Key: BEAM-10766
> URL: https://issues.apache.org/jira/browse/BEAM-10766
> Project: Beam
> Issue Type: Bug
> Components: test-failures
> Reporter: Kyle Weaver
> Assignee: Brian Hulette
> Priority: P1
> Labels: flaky-test
> Time Spent: 1h 50m
> Remaining Estimate: 0h
>
> [https://ci-beam.apache.org/job/beam_PreCommit_Python_cron/3125/]
> [https://ci-beam.apache.org/job/beam_PreCommit_Python_commit/14680/]
> self =
> <apache_beam.typehints.native_type_compatibility_test.NativeTypeCompatibilityTest
> testMethod=test_convert_to_beam_types>
> def test_convert_to_beam_types(self):
> typing_types = [
> bytes,
> typing.List[bytes],
> typing.List[typing.Tuple[bytes, int]],
> typing.Union[int, typing.List[int]]
> ]
> beam_types = [
> bytes,
> typehints.List[bytes],
> typehints.List[typehints.Tuple[bytes, int]],
> typehints.Union[int, typehints.List[int]]
> ]
> converted_beam_types = convert_to_beam_types(typing_types)
> > self.assertEqual(converted_beam_types, beam_types)
> E AssertionError: Lists differ: [<type 'str'>, List[Any], List... != [<type
> 'str'>, List[str], List...
> E
> E First differing element 1:
> E List[Any]
> E List[str]
> E
> E - [<type 'str'>, List[Any], List[Tuple[str, int]], Union[List[int], int]]
> E ? ^^^
> E
> E + [<type 'str'>, List[str], List[Tuple[str, int]], Union[List[int], int]]
> E ? ^^^
> apache_beam/typehints/native_type_compatibility_test.py:214: AssertionError
--
This message was sent by Atlassian Jira
(v8.3.4#803005)