This is dummy repo with error analytics for pandas-dev/pandas#54046
I ran the following command in both Gitpod and docker after building pandas in both environments (in the cloud and locally):
pytest pandas/tests/io/test_sql.py pandas/tests/io/parser/test_network.py pandas/tests/io/test_fsspec.py pandas/tests/io/test_parquet.py pandas/tests/io/test_s3.py pandas/tests/io/excel/test_readers.py pandas/tests/io/excel/test_style.py pandas/tests/io/json/test_compression.py pandas/tests/io/json/test_pandas.py pandas/tests/io/xml/test_to_xml.py > myoutput.log
Using diffchecker in VSCode showed that they have exactly the same errors, which means that either there is an issue with the version pinning of the some of the dependencies in the requirements file downloaded in the docker file; or a lack of access to endpoints required for testing. This is expected behavior:


docker_full_test_results.log
is the full output of the command above for the docker build run locally on my computerdocker_summary_test_results
is just the summary test info for the outputgitpod_full_test_results.log
andgitpod_summary_test_results.log
are the same for the Gitpod buildmyoutput.log
is the fullpytest pandas
output in the Gitpod environment. I don't have the equivalent for the docker build because my computer cannot run it without the process being killed prematurely.