Skip to content

Commit

Permalink
Tests: Exclude BuildMessageTestStandalone from gradle tests
Browse files Browse the repository at this point in the history
NPEs via junit; must be run via main()
Already disabled on ant side
  • Loading branch information
zzzi2p committed Oct 21, 2023
1 parent 6044d54 commit ec68911
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions router/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ plugins {
id 'java-library'
}

apply plugin: 'java' // adds 'test' task

sourceSets {
main {
java {
Expand Down Expand Up @@ -49,4 +51,9 @@ jar {
from ('resources', {
into "net/i2p/router/util/resources"
})

test {
exclude 'net/i2p/router/tunnel/pool/**'
}

}

0 comments on commit ec68911

Please sign in to comment.