Created
May 21, 2021 14:18
-
-
Save msavy/735682a082bbbca6fb218ed64e478e45 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/.github/workflows/verify.yaml b/.github/workflows/verify.yaml | |
index 14817ebb4..a93fa792c 100644 | |
--- a/.github/workflows/verify.yaml | |
+++ b/.github/workflows/verify.yaml | |
@@ -152,4 +152,4 @@ jobs: | |
./mvnw -B deploy -DskipTests -Dmaven.test.skip=true | |
env: | |
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
- MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} | |
\ No newline at end of file | |
+ MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} | |
diff --git a/manager/ui/war/cypress/integration/Basic_Functionality.js b/manager/ui/war/cypress/integration/Basic_Functionality.js | |
index 40f4a4d67..eea124fc2 100644 | |
--- a/manager/ui/war/cypress/integration/Basic_Functionality.js | |
+++ b/manager/ui/war/cypress/integration/Basic_Functionality.js | |
@@ -3,7 +3,9 @@ describe('Apiman e2e UI smoke test', () => { | |
before(() => { | |
cy.clearCookies(); | |
cy.visit('/'); | |
- cy.typeLogin('admin', 'admin123!') | |
+ if(Cypress.env('CI')) { | |
+ cy.typeLogin('admin', 'admin123!'); | |
+ } | |
}); | |
after(() => { | |
diff --git a/manager/ui/war/gulpfileCI.js b/manager/ui/war/gulpfileCI.js | |
index c48befa7d..deab73761 100644 | |
--- a/manager/ui/war/gulpfileCI.js | |
+++ b/manager/ui/war/gulpfileCI.js | |
@@ -53,7 +53,6 @@ gulp.task('connect', function() { | |
changeOrigin: true, | |
autoRewrite: true, | |
followRedirect: false, | |
- logLevel: "debug", | |
xfwd: true, | |
onProxyRes: onProxyRes | |
}); | |
@@ -63,7 +62,6 @@ gulp.task('connect', function() { | |
changeOrigin: true, | |
autoRewrite: true, | |
followRedirect: false, | |
- logLevel: "debug", | |
xfwd: true, | |
onProxyRes: onProxyRes | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment