You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2023/01/03 09:25:21 UTC

[streampipes] 01/02: [#1026] Activate JUnit tests in GiHub actions

This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a commit to branch SP-1026
in repository https://gitbox.apache.org/repos/asf/streampipes.git

commit 86e7e8dc2519301e4555a717001b9738b86b0d40
Author: Philipp Zehnder <te...@users.noreply.github.com>
AuthorDate: Tue Jan 3 10:14:12 2023 +0100

    [#1026] Activate JUnit tests in GiHub actions
---
 .github/workflows/build.yml         | 2 +-
 .github/workflows/cypress-test.yml  | 2 +-
 .github/workflows/pr-validation.yml | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 965e1262f..8954c4e7c 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -40,7 +40,7 @@ jobs:
           node-version: '16.x'
 
       - name: Build with Maven
-        run: mvn clean verify -Dmaven.test.skip=true
+        run: mvn clean verify
 
       - name: Set env variables for Docker builds
         run: |
diff --git a/.github/workflows/cypress-test.yml b/.github/workflows/cypress-test.yml
index 28c7a33eb..e870058b0 100644
--- a/.github/workflows/cypress-test.yml
+++ b/.github/workflows/cypress-test.yml
@@ -47,7 +47,7 @@ jobs:
           npm run build
 
       - name: Build with Maven
-        run: mvn clean package -Dmaven.test.skip=true
+        run: mvn clean package
 
       - name: Build and run streampipes
         run: docker-compose up --build -d
diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml
index 85a757fa3..07ace7096 100644
--- a/.github/workflows/pr-validation.yml
+++ b/.github/workflows/pr-validation.yml
@@ -32,7 +32,7 @@ jobs:
           java-version: '17'
 
       - name: Validate java code
-        run: mvn clean verify -Dmaven.test.skip=true
+        run: mvn clean verify
 
   run-format-and-lint-ui:
     runs-on: ubuntu-latest
@@ -85,7 +85,7 @@ jobs:
           npm run build
 
       - name: Build with Maven
-        run: mvn clean package -Dmaven.test.skip=true
+        run: mvn clean package
 
       - name: Build and run streampipes
         run: docker-compose up --build -d