Skip to content

Commit

Permalink
enable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmipt committed Nov 15, 2024
1 parent 4a32780 commit 50da37f
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions test/studio/kdb/ConfigTest.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
package studio.kdb;

import org.junit.jupiter.api.*;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import studio.core.Credentials;
import studio.core.DefaultAuthenticationMechanism;
import studio.kdb.config.ActionOnExit;
Expand Down Expand Up @@ -77,7 +80,6 @@ public void addServerSameName() {
}

@Test
@Disabled("temporary disabled for verifying github actions")
public void testDifferentConfigs() throws IOException{
Config config1 = config;
init();
Expand Down Expand Up @@ -170,7 +172,6 @@ private Config copyConfig(Config config, Consumer<Properties> propsModification)
}

@Test
@Disabled("temporary disabled for verifying github actions")
public void upgrade13Test() throws IOException {
config.addServer(server);

Expand Down Expand Up @@ -243,7 +244,6 @@ public void addServersTest() {
}

@Test
@Disabled("temporary disabled for verifying github actions")
public void testExecAllOptions() throws IOException {
assertEquals(Config.ExecAllOption.Ask, config.getExecAllOption());

Expand All @@ -262,7 +262,6 @@ public void testExecAllOptions() throws IOException {
}

@Test
@Disabled("temporary disabled for verifying github actions")
public void testConnExtractor() throws IOException {
TableConnExtractor extractor = config.getTableConnExtractor();
assertNotNull(extractor);
Expand All @@ -285,7 +284,6 @@ public void testConnExtractor() throws IOException {
}

@Test
@Disabled("temporary disabled for verifying github actions")
public void testAutoSaveFlags() throws IOException {
assertFalse(config.getBoolean(Config.AUTO_SAVE));
assertEquals(ActionOnExit.SAVE, config.getEnum(Config.ACTION_ON_EXIT));
Expand Down

0 comments on commit 50da37f

Please sign in to comment.