You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.github/workflows/ci.yml's integration-test job runs pytest -v -m "integration and not slow"
but sets no Babel configuration, so it uses the public default. shared_downloader HEADs duckdb/Concord.parquet, gets a 404, and skips 28 tests. The 13 that do run only exercise the
NodeNorm API.
The job is green and covers none of the DuckDB query layer, the downloader's real network paths,
or the cache-refresh logic.
Options
Set BABEL_RELEASES_URL (and BABEL_VERSION) from a repository secret pointing at a tree that
publishes the files. Note the runner would pull ~626 MB for Concord, so keep excluding slow.
.github/workflows/ci.yml'sintegration-testjob runspytest -v -m "integration and not slow"but sets no Babel configuration, so it uses the public default.
shared_downloaderHEADsduckdb/Concord.parquet, gets a 404, and skips 28 tests. The 13 that do run only exercise theNodeNorm API.
The job is green and covers none of the DuckDB query layer, the downloader's real network paths,
or the cache-refresh logic.
Options
BABEL_RELEASES_URL(andBABEL_VERSION) from a repository secret pointing at a tree thatpublishes the files. Note the runner would pull ~626 MB for Concord, so keep excluding
slow.outcome, since it needs no secret at all.
Blocked on, and possibly resolved by, #16.