Add ClickHouse module#981
Merged
cristianrgreco merged 5 commits intotestcontainers:mainfrom Apr 11, 2025
Merged
Conversation
✅ Deploy Preview for testcontainers-node ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Collaborator
|
Used this for reference for the wait strategy: https://github.com/testcontainers/testcontainers-dotnet/blob/develop/src/Testcontainers.ClickHouse/ClickHouseBuilder.cs#L91-L92 |
…ient and fix tests
Contributor
Author
|
@cristianrgreco thanks for the help! I fixed the tests and cleaned up the implementation a bit, so it should be ready for review now 😄 |
… docs inconsistencies
Contributor
Author
|
@cristianrgreco thanks for the review! I incorporated your changes, let me know if anything else needs tweaking! 😊 |
cristianrgreco
approved these changes
Apr 11, 2025
vaernion
pushed a commit
to Arbeidstilsynet/brevgen2
that referenced
this pull request
Dec 3, 2025
….25.0 This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [testcontainers](https://github.com/testcontainers/testcontainers-node) | [`10.24.2` -> `10.25.0`](https://renovatebot.com/diffs/npm/testcontainers/10.24.2/10.25.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>testcontainers/testcontainers-node (testcontainers)</summary> ### [`v10.25.0`](https://github.com/testcontainers/testcontainers-node/releases/tag/v10.25.0) [Compare Source](testcontainers/testcontainers-node@v10.24.2...v10.25.0) #### Changes #### 🚀 Features - Allow overriding default compose wait strategy [@​jalaziz](https://github.com/jalaziz) ([#​990](testcontainers/testcontainers-node#990)) - Add ClickHouse module [@​Victorlouisdg](https://github.com/Victorlouisdg) ([#​981](testcontainers/testcontainers-node#981)) #### 📦 Dependency Updates - Bump vite from 6.2.5 to 6.3.4 [@​dependabot](https://github.com/dependabot) ([#​992](testcontainers/testcontainers-node#992)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or PR is renamed to start with "rebase!". 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Related work items: #30372
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds an initial implementation for a ClickHouse module.
To run the tests
npx vitest run packages/modules/clickhouse/src/clickhouse-container.test.tsThe implementation and tests are heavily inspired by the Postgres module.