Skip to content

Commit

Permalink
Upgrade tests to the latest DB version
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed Apr 25, 2024
1 parent 8a8aa7b commit 57988e8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
group: ${{ github.workflow }}-${{ github.ref }}-build
cancel-in-progress: true
env:
EXASOL_VERSION: "8.24.0"
EXASOL_VERSION: "8.26.0"
steps:
- name: Check out code
uses: actions/checkout@v4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class ExampleIT {
@BeforeAll
static void setup() {
// Overwrite default Exasol version
System.setProperty("com.exasol.dockerdb.image", "8.24.0");
System.setProperty("com.exasol.dockerdb.image", "8.26.0");

exasolTestSetup = new ExasolTestSetupFactory(Path.of("cloud-setup")).getTestSetup();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ private IntegrationTestCommon() {

static ExasolTestSetup createExasolTestSetup() {
if (System.getProperty("com.exasol.dockerdb.image") == null) {
System.setProperty("com.exasol.dockerdb.image", "8.24.0");
System.setProperty("com.exasol.dockerdb.image", "8.26.0");
}
return new ExasolTestSetupFactory(Path.of("dummy-config")).getTestSetup();
}
Expand Down

0 comments on commit 57988e8

Please sign in to comment.