Hi, I ran 'python -m pytest -p integration_tests.acceptance' but encountered three errors.
The first error is related to the 'conftest.py' file located in 'airbyte/airbyte-integrations/bases/source-acceptance-test/source_acceptance_test'. I believe this error occurred because the test is searching for a Docker image on Docker Hub, but we don't have any. My proposed solution is to modify line 149 to 'return image_tag'.
The second error is related to reading two sequential readings. I think the error occurred because we assigned a unique identifier to each stream record. To address this, my solution is to set the ID to None for each record in the 'for' loop on lines 52 and 58 of 'airbyte/airbyte-integrations/bases/source-acceptance-test/source_acceptance_test/tests/test_full_refresh.py'.
The third error is that the key 'Error' is missing in 'airbyte/airbyte-integrations/bases/source-acceptance-test/source_acceptance_test/utils/connector_runner.py'. My proposed solution is to wrap 'Error' with '.get()', line 163.
I have attached screenshots of the errors in the specified order.
I hope you can assist me with these issues. Thank you.