Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Run integ tests as part of git workflow instead of build (#115)
Browse files Browse the repository at this point in the history
This commit makes it so that you can build PA without running
integration tests. This is useful for many reasons, including being able
to build RCA without depending on PA's integration tests and
dramatically reducing build times.

Integration Testing has been added as part of the Github Actions
workflow
  • Loading branch information
Sid Narayan authored Jun 16, 2020
1 parent 1d92e7e commit 106401b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- master

pull_request:
branches:
- master
Expand Down Expand Up @@ -49,3 +48,6 @@ jobs:
- name: Start Build
working-directory: ./tmp/pa
run: ./gradlew build
- name: Run Integration Tests
working-directory: ./tmp/pa
run: ./gradlew integTest
2 changes: 0 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -267,5 +267,3 @@ afterEvaluate {
tasks = ['build', 'buildRpm', 'buildDeb']
}
}

check.dependsOn integTest

0 comments on commit 106401b

Please sign in to comment.