-
Notifications
You must be signed in to change notification settings - Fork 27
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
Allow tests to use ClickHouse Cloud, add simple HTTPS support #22
Conversation
.github/workflows/run-tests.yml
Outdated
clickhouse: | ||
- head | ||
- latest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to investigate why we have failures using Cloud env with 4 parallel test runs when using a proper matrix
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's create a dedicated issue to fix the problem in a follow-up PR
# Conflicts: # __tests__/unit/parse_error.ts # src/error/parse_error.ts
* Local ClickHouse cluster configuration * Fix `command` and related tests, use more flexible test env, rename configs
__tests__/utils/client.ts
Outdated
import { randomUUID } from 'crypto'; | ||
|
||
export type TestClientConfiguration = ClickHouseClientConfigOptions & { | ||
useCloud?: boolean; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add a comment it's a temporary flag until we make all the tests compatible with Cloud.
Implements #6, partially #3