Problem
Line 22 of .gitignore holds the pattern data/. This pattern also matches test-datasets/iceberg-example/data/.
Git tracks only the metadata/ folder of the fixture. The Parquet data files are absent.
The local suite raises FileNotFoundError. The S3 suite uploads a table without data files. The server answers:
Object at location iceberg-example/data/...parquet not found
Nine tests fail.
Failed tests
test_iceberg.py (6 errors)
test_iceberg_s3.py (3 failures)
Task
- Add a negation rule for
test-datasets/iceberg-example/data/ to .gitignore.
- Regenerate the fixture:
cargo test -p beacon-core --test iceberg_tables -- --ignored --exact regenerate_the_committed_fixture
- Commit the data files.
- Run both files again.
Environment
Branch features/reimplement-atlas. Image beacon-integration:local.
Problem
Line 22 of
.gitignoreholds the patterndata/. This pattern also matchestest-datasets/iceberg-example/data/.Git tracks only the
metadata/folder of the fixture. The Parquet data files are absent.The local suite raises
FileNotFoundError. The S3 suite uploads a table without data files. The server answers:Nine tests fail.
Failed tests
test_iceberg.py(6 errors)test_iceberg_s3.py(3 failures)Task
test-datasets/iceberg-example/data/to.gitignore.cargo test -p beacon-core --test iceberg_tables -- --ignored --exact regenerate_the_committed_fixtureEnvironment
Branch
features/reimplement-atlas. Imagebeacon-integration:local.