Skip to content

Commit

Permalink
Merge pull request #514 from XiangRongLin/test_jvm_property
Browse files Browse the repository at this point in the history
Pass on gradle JVM system property to test JVM
  • Loading branch information
Stypox authored Jan 15, 2021
2 parents 48a9993 + a6cfe11 commit b9ba956
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions extractor/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
test {
// Pass on downloader type to tests for different CI jobs. See DownloaderFactory.java and ci.yml
if (System.properties.containsKey('downloader')) {
systemProperty('downloader', System.getProperty('downloader'))
}
}

dependencies {
implementation project(':timeago-parser')

Expand Down

0 comments on commit b9ba956

Please sign in to comment.