Skip to content

Commit

Permalink
rework github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmipt committed Nov 15, 2024
1 parent 1756561 commit ebfeedc
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions test/studio/kdb/ConfigTest.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
package studio.kdb;

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 org.junit.jupiter.api.*;
import studio.core.Credentials;
import studio.core.DefaultAuthenticationMechanism;
import studio.kdb.config.ActionOnExit;
Expand Down Expand Up @@ -80,6 +77,7 @@ public void addServerSameName() {
}

@Test
@Disabled("temporary disabled for verifying github actions")
public void testDifferentConfigs() throws IOException{
Config config1 = config;
init();
Expand Down Expand Up @@ -172,6 +170,7 @@ 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 @@ -244,6 +243,7 @@ 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,8 @@ public void testExecAllOptions() throws IOException {
}

@Test
public void testConnExractor() throws IOException {
@Disabled("temporary disabled for verifying github actions")
public void testConnExtractor() throws IOException {
TableConnExtractor extractor = config.getTableConnExtractor();
assertNotNull(extractor);

Expand All @@ -284,6 +285,7 @@ public void testConnExractor() 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 ebfeedc

Please sign in to comment.