From 836c44294a3cae9ea38b1464431ebac1bef6633d Mon Sep 17 00:00:00 2001 From: BenWhitehead Date: Wed, 8 Jan 2020 15:23:26 -0500 Subject: [PATCH] feat: add new enable-integration-tests profile (#75) Integration tests generally require credentials and access to external GCP services which is not always available to every contributor. This change skips the running of integration tests by default (they are still compiled) in favor of explicitly enabling. To enable the running of integration tests activate the `enable-integration-tests` profile when executing maven (command line are: `-Penable-integration-tests`) --- pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pom.xml b/pom.xml index 754446a9..319179ab 100644 --- a/pom.xml +++ b/pom.xml @@ -59,6 +59,7 @@ ${project.artifactId} false + true @@ -556,5 +557,11 @@ + + enable-integration-tests + + false + +