diff --git a/.github/workflows/e2e_tests.yaml b/.github/workflows/e2e_tests.yaml index bfce34f1c..219bf07aa 100644 --- a/.github/workflows/e2e_tests.yaml +++ b/.github/workflows/e2e_tests.yaml @@ -74,7 +74,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: kind-junit-${{ env.JOB_NAME }}-${{ github.run_id }} - path: './hack/temp/e2e/artifacts/reports/*.xml' + path: './temp/e2e/artifacts/reports/*.xml' - name: Upload logs if: always() @@ -87,4 +87,4 @@ jobs: uses: mikepenz/action-junit-report@v3 if: always() with: - report_paths: './hack/temp/e2e/artifacts/reports/*.xml' + report_paths: './temp/e2e/artifacts/reports/*.xml' diff --git a/hack/test_e2e.sh b/hack/test_e2e.sh index 95b9ed175..756f5d8a6 100755 --- a/hack/test_e2e.sh +++ b/hack/test_e2e.sh @@ -40,7 +40,7 @@ KUBECONFIG_TESTS="kubeconfig_tests.conf" GINKGO_NUMBER_OF_NODES=25 GINKGO_FOCUS=${GINKGO_FOCUS:-"\[Conformance\]|\[sig-network\]"} GINKGO_SKIP_TESTS="machinery|Feature|Federation|PerformanceDNS|Disruptive|Serial|LoadBalancer|KubeProxy|GCE|Netpol|NetworkPolicy" -GINKGO_REPORT_DIR="artifacts/reports" +GINKGO_REPORT_DIR="../artifacts/reports" GINKGO_DUMP_LOGS_ON_FAILURE=false GINKGO_DISABLE_LOG_DUMP=true GINKGO_PROVIDER="local"