Skip to content

Commit

Permalink
Fix instrumentation running
Browse files Browse the repository at this point in the history
  • Loading branch information
ekigamba committed Jul 24, 2023
1 parent f0ac0a1 commit e6dee87
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions android/quest/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -382,13 +382,11 @@ task("checkPerformanceLimits") {

val mainFolder =
project.file(
"build/outputs/connected_android_test_additional_output/opensrpDebugAndroidTest/connected"
"quest"
)

if (mainFolder != null && mainFolder.exists()) {

val performanceFileFolder = mainFolder.listFiles().first()
val resultsFile = File(performanceFileFolder, "org.smartregister.opensrp-benchmarkData.json")
val resultsFile = File(mainFolder, "org.smartregister.opensrp-benchmarkData.json")

// Read the expectations file
val expectedResultsMap: HashMap<String, HashMap<String, Double>> = hashMapOf()
Expand Down

0 comments on commit e6dee87

Please sign in to comment.