Skip to content

Commit

Permalink
chore(mann-whitney): Clean-up Mann-Whitney test suite (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
csanden authored and skandragon committed Jul 12, 2018
1 parent e690799 commit 279c789
Show file tree
Hide file tree
Showing 2 changed files with 975 additions and 102 deletions.
8 changes: 8 additions & 0 deletions kayenta-mannwhitney/kayenta-mannwhitney.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,11 @@ dependencies {

testCompile 'org.scalatest:scalatest_2.12:3.0.1'
}

task scalaTest(dependsOn: ['testClasses'], type: JavaExec) {
main = 'org.scalatest.tools.Runner'
args = ['-R', 'build/classes/scala/test', '-o']
classpath = sourceSets.test.runtimeClasspath
}

test.dependsOn scalaTest // so that running "test" would run this first, then the JUnit tests
Loading

0 comments on commit 279c789

Please sign in to comment.