Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed pdf report zip file name for cypress #1082

Merged
merged 27 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
90ed448
removed obsolete msalv2-login_obsolete.ts
roicarrera Oct 18, 2024
ab435c4
updated documentation
roicarrera Oct 21, 2024
a045724
Merge pull request #4 from roicarrera/feature/otp_login_for_cypress
roicarrera Oct 21, 2024
0c2709f
updated CHANGELOG.md
roicarrera Oct 21, 2024
f41f1b2
added baseurl management based on environment
roicarrera Oct 23, 2024
4373a46
add example of environment variables based on environment
roicarrera Oct 23, 2024
de05223
Merge branch 'master' into master
roicarrera Oct 28, 2024
cd122b6
Merge pull request #5 from roicarrera/feature/cypress-env-improvements
roicarrera Nov 4, 2024
ab65f5a
added mochawesome reporter + multi reporters
roicarrera Nov 4, 2024
c5ca704
applied dependabot changes from ods
roicarrera Nov 4, 2024
53d2bc8
Merge pull request #6 from roicarrera/feature/generate-pdf-report
roicarrera Nov 4, 2024
ae8e16f
Merge branch 'master' into backup-branch
roicarrera Nov 5, 2024
3dca248
Merge pull request #7 from roicarrera/backup-branch
roicarrera Nov 5, 2024
0fc0fb7
update CHANGELOG.md
roicarrera Nov 6, 2024
920717b
Merge branch 'master' of https://github.com/roicarrera/ods-quickstarters
roicarrera Nov 6, 2024
cf20766
adressed comments in PR
roicarrera Nov 11, 2024
9f1bd9e
small fixes
roicarrera Nov 11, 2024
3e35b85
only run installation tests in prod
roicarrera Nov 14, 2024
3f51c8a
updated documentation
roicarrera Nov 15, 2024
1948dd2
fixed withCredentials block
roicarrera Nov 20, 2024
c3d8976
default video to false
roicarrera Dec 5, 2024
a12c8b0
Update e2e-cypress/files/README.md
roicarrera Dec 5, 2024
29ec4bb
Update e2e-cypress/files/README.md
roicarrera Dec 5, 2024
510f763
changed pdf reports zip file name
roicarrera Dec 10, 2024
209ced7
Merge branch 'master' of https://github.com/roicarrera/ods-quickstarters
roicarrera Dec 10, 2024
7edf961
merge from master
roicarrera Dec 10, 2024
1c2578e
update CHANGELOG.md
roicarrera Dec 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
- Added new function to cypress to log into applications using MFA ([#1070](https://github.com/opendevstack/ods-quickstarters/pull/1070))
- Removal of deprecated versions ([#1068](https://github.com/opendevstack/ods-quickstarters/issues/1068))
- Generate PDF report for cypress and improved environment management ([#1079](https://github.com/opendevstack/ods-quickstarters/pull/1079))
- Change PDF report zip file name in Cypress Quickstarter ([#1082](https://github.com/opendevstack/ods-quickstarters/pull/1082))

### Added

Expand Down
8 changes: 4 additions & 4 deletions e2e-cypress/Jenkinsfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ odsComponentPipeline(
]
)
}
if (fileExists('cypress/pdf.zip')) {
if (fileExists('cypress/cypress-test-reports-pdf.zip')) {
odsComponentStageUploadToNexus(context,
[
distributionFile: 'cypress/pdf.zip',
distributionFile: 'cypress/cypress-test-reports-pdf.zip',
repository: 'leva-documentation',
repositoryType: 'raw',
targetDirectory: "${targetDirectory}"
Expand Down Expand Up @@ -121,8 +121,8 @@ def stageTest(def context) {
}

sh 'npm run generate:pdf'
zip zipFile: 'cypress/pdf.zip', archive: false, dir: 'build/test-results/mochawesome/pdf'
archiveArtifacts artifacts: 'cypress/pdf.zip', fingerprint: true
zip zipFile: 'cypress/cypress-test-reports-pdf.zip', archive: false, dir: 'build/test-results/mochawesome/pdf'
archiveArtifacts artifacts: 'cypress/cypress-test-reports-pdf.zip', fingerprint: true

if (fileExists('cypress/videos')) {
zip zipFile: 'cypress/videos.zip', archive: false, dir: 'cypress/videos'
Expand Down
Loading