Skip to content

Commit

Permalink
#318 Migrate integration-test to this subdirectory
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheman committed Nov 19, 2024
1 parent 65844df commit ab6fc77
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions integration-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ version = htmlSanityCheckVersion
final String INTEGRATION_TEST_DIRECTORY_COMMON = "common"
final String INTEGRATION_TEST_DIRECTORY_COMMON_BUILD = "common/${BUILD_DIRECTORY}"

final static String gradleCall() {
return System.getProperty("os.name") ==~ /Windows.*/
? "..\\..\\gradlew.bat"
: "../../gradlew"
}

tasks.register("cleanIntegrationTestCommon", Delete) {
group("Build")
description("Deletes the common data for integration tests")
Expand Down

0 comments on commit ab6fc77

Please sign in to comment.