Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the Parquet serializer's auto-fixing of non-string column names #1000

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions packages/kernel/src/worker-runtime.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,16 @@ at.button[0].click()
await at.run(timeout=10)
`,
},
{
// Checks if the Parquet serializer's auto-fixing of non-string column names works. Ref: https://github.com/whitphx/stlite/issues/978
entrypoint: "layout.columns2.py",
files: {
"layout.columns2.py": path.resolve(
__dirname,
"../../sharing-editor/public/samples/011_component_gallery/pages/layout.columns2.py",
),
},
},
];

suite("Worker intergration test running an app", async () => {
Expand Down
2 changes: 1 addition & 1 deletion streamlit
Loading