-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: mdolhalo <[email protected]>
- Loading branch information
mdolhalo
committed
Oct 10, 2023
1 parent
6768afd
commit 53b40e4
Showing
20 changed files
with
440 additions
and
76 deletions.
There are no files selected for viewing
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/** ******************************************************************* | ||
* copyright (c) 2023 Red Hat, Inc. | ||
* | ||
* This program and the accompanying materials are made | ||
* available under the terms of the Eclipse Public License 2.0 | ||
* which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
**********************************************************************/ | ||
const { REPORTER_CONSTANTS } = require('../constants/REPORTER_CONSTANTS'); | ||
const { BASE_TEST_CONSTANTS } = require('../constants/BASE_TEST_CONSTANTS'); | ||
|
||
module.exports = { | ||
reporterEnabled: REPORTER_CONSTANTS.REPORTERS_ENABLED(), | ||
allureMochaReporterOptions: { | ||
resultsDir: '.allure-results' | ||
}, | ||
reportportalAgentJsMochaReporterOptions: { | ||
apiKey: REPORTER_CONSTANTS.RP_API_KEY, | ||
endpoint: REPORTER_CONSTANTS.PR_ENDPOINT(), | ||
project: REPORTER_CONSTANTS.RP_PROJECT(), | ||
launch: `${REPORTER_CONSTANTS.RP_RUN_KIND} ${BASE_TEST_CONSTANTS.TEST_ENVIRONMENT}`, | ||
attributes: [ | ||
{ | ||
key: 'build', | ||
value: `${BASE_TEST_CONSTANTS.TESTING_APPLICATION_VERSION}` | ||
}, | ||
{ | ||
value: BASE_TEST_CONSTANTS.TESTING_APPLICATION_NAME() | ||
}, | ||
{ | ||
key: 'url', | ||
value: BASE_TEST_CONSTANTS.TS_SELENIUM_BASE_URL | ||
} | ||
], | ||
rerun: REPORTER_CONSTANTS.RP_RERUN(), | ||
rerunOf: REPORTER_CONSTANTS.RP_RERUN_UUID, | ||
restClientConfig: { | ||
timeout: 1200000 | ||
} | ||
} | ||
}; |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
# shellcheck source=/dev/null | ||
|
||
export OCP_VERSION="ocp4-13" | ||
sh "configs/sh-scripts/regressionTestRun.sh" | ||
|
||
export OCP_VERSION="ocp4-12" | ||
sh "configs/sh-scripts/regressionTestRun.sh" | ||
|
||
export OCP_VERSION="airgap-ocp-413" | ||
sh "configs/sh-scripts/regressionTestRun.sh" |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.