Skip to content

Commit

Permalink
Update CI test setup (RPB-8)
Browse files Browse the repository at this point in the history
  • Loading branch information
fsteeg committed Mar 17, 2022
1 parent 22d8d87 commit c60db3e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ jobs:
./gradlew publishToMavenLocal
cd ..
- name: Run tests
run: sbt test
run: sbt "test-only tests.CITests"

5 changes: 4 additions & 1 deletion test/tests/CITests.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;

import rpb.DecodeTest;
import rpb.EtlTest;

/**
* All quick, self-contained tests for running as CI. For running all
* tests, including long running tests and integration tests with dependencies
Expand All @@ -13,7 +16,7 @@
*
*/
@RunWith(Suite.class)
@SuiteClasses({ ApplicationTest.class, InternalIntegrationTest.class })
@SuiteClasses({ ApplicationTest.class, /*InternalIntegrationTest.class,*/ DecodeTest.class, EtlTest.class})
public class CITests {
//
}

0 comments on commit c60db3e

Please sign in to comment.