Skip to content

Commit b9ba956

Browse files
authored
Merge pull request #514 from XiangRongLin/test_jvm_property
Pass on gradle JVM system property to test JVM
2 parents 48a9993 + a6cfe11 commit b9ba956

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

extractor/build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
test {
2+
// Pass on downloader type to tests for different CI jobs. See DownloaderFactory.java and ci.yml
3+
if (System.properties.containsKey('downloader')) {
4+
systemProperty('downloader', System.getProperty('downloader'))
5+
}
6+
}
7+
18
dependencies {
29
implementation project(':timeago-parser')
310

0 commit comments

Comments
 (0)