Build: #1 failed

Job: Pipeline PR Test 6.6.6 failed

Stages & jobs

  1. Default Stage

serialize context metadata: Test case result

The below summarizes the result of the test " serialize context metadata" in build 1 of Pipeline - Pipeline Pull Request Test - context-serializer - Pipeline PR Test 6.6.6.
Description
serialize context metadata
Test class
pipeline.infrastructure.serializers_test.TestJSONMetadataSerializer
Method
test_serialize_context_metadata
Duration
< 1 sec
Status
Failed (New Failure)

Error Log

TypeError: TestJSONMetadataSerializer.test_serialize_context_metadata() missing 1 required positional argument: 'tmp_path'
self = <unittest.case._Outcome object at 0x7fa494eb91e0>
test_case = <pipeline.infrastructure.serializers_test.TestJSONMetadataSerializer testMethod=test_serialize_context_metadata>
isTest = True

    @contextlib.contextmanager
    def testPartExecutor(self, test_case, isTest=False):
        old_success = self.success
        self.success = True
        try:
>           yield

../../casa-6.6.6-17-py3.10.el8/lib/py/lib/python3.10/unittest/case.py:59: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
../../casa-6.6.6-17-py3.10.el8/lib/py/lib/python3.10/unittest/case.py:591: in run
    self._callTestMethod(testMethod)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <pipeline.infrastructure.serializers_test.TestJSONMetadataSerializer testMethod=test_serialize_context_metadata>
method = <bound method TestJSONMetadataSerializer.test_serialize_context_metadata of <pipeline.infrastructure.serializers_test.TestJSONMetadataSerializer testMethod=test_serialize_context_metadata>>

    def _callTestMethod(self, method):
>       method()
E       TypeError: TestJSONMetadataSerializer.test_serialize_context_metadata() missing 1 required positional argument: 'tmp_path'

../../casa-6.6.6-17-py3.10.el8/lib/py/lib/python3.10/unittest/case.py:549: TypeError