Skip to content

Commit

Permalink
CI: Explicitly use CrateDB nightly for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Jun 11, 2024
1 parent 3e11a0c commit 86789ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cratedb_toolkit/testing/pytest.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def cratedb_service() -> Generator[CrateDBTestAdapter, None, None]:
"""
Provide a CrateDB service instance to the test suite.
"""
db = CrateDBTestAdapter()
db = CrateDBTestAdapter(crate_version="nightly")
db.start()
yield db
db.stop()
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def cratedb_custom_service():
"""
Provide a CrateDB service instance to the test suite.
"""
db = CrateDBTestAdapter()
db = CrateDBTestAdapter(crate_version="nightly")
db.start(ports={CRATEDB_HTTP_PORT: None}, cmd_opts=CRATEDB_SETTINGS)
db.reset(tables=RESET_TABLES)
yield db
Expand Down

0 comments on commit 86789ae

Please sign in to comment.