2
0
mirror of https://github.com/TeamNewPipe/NewPipeExtractor synced 2025-08-31 06:15:37 +00:00

Merge pull request #514 from XiangRongLin/test_jvm_property

Pass on gradle JVM system property to test JVM
This commit is contained in:
Stypox
2021-01-15 20:44:23 +01:00
committed by GitHub

View File

@@ -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 { dependencies {
implementation project(':timeago-parser') implementation project(':timeago-parser')