Example submission failed

What I did is pull the image, ‘make pack-example’ and then ‘make test-submission’.

The error says:

Traceback (most recent call last):
File “/code_execution/supervisor.py”, line 134, in
main()
File “/code_execution/supervisor.py”, line 90, in main
submission_format_df = pd.read_csv(submission_format_path, index_col=[“site_id”, “issue_date”])
File “/opt/conda/lib/python3.10/site-packages/pandas/io/parsers/readers.py”, line 948, in read_csv
return _read(filepath_or_buffer, kwds)
File “/opt/conda/lib/python3.10/site-packages/pandas/io/parsers/readers.py”, line 611, in _read
parser = TextFileReader(filepath_or_buffer, **kwds)
File “/opt/conda/lib/python3.10/site-packages/pandas/io/parsers/readers.py”, line 1448, in init
self._engine = self._make_engine(f, self.engine)
File “/opt/conda/lib/python3.10/site-packages/pandas/io/parsers/readers.py”, line 1705, in _make_engine
self.handles = get_handle(
File “/opt/conda/lib/python3.10/site-packages/pandas/io/common.py”, line 863, in get_handle
handle = open(
FileNotFoundError: [Errno 2] No such file or directory: ‘/code_execution/data/submission_format.csv’

The file ‘submission_format’ not in the runtime?

Hi @newbeeca,

It sounds like maybe you’ve skipped the step to set up the data directory. Please see this part of the README.

Thanks, Jay, now It works.