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

updated Github Actions Script #15

Merged
merged 2 commits into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Next Next commit
updated the yaml files with the report flag
  • Loading branch information
amanchopra1905 committed Dec 7, 2023
commit 941a52d8427b4f1f20cd20b456c4dba6eb04360c
9 changes: 7 additions & 2 deletions yaml/linux/pytest_hyperexecute_autosplit_sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ retryOnFailure: true
maxRetries: 1
concurrency: 2

mergeArtifacts: true

env:
# PAT: ${{ .secrets.testKey }}
TARGET_OS: LINUX
Expand All @@ -31,11 +29,18 @@ runtime:
language: python
version: "3"

mergeArtifacts: true
uploadArtefacts:
- name: TestReports
path:
- reports/**

report: true
partialReports:
type: json
location: reports/
frameworkName: extent

testDiscovery:
type: raw
mode: dynamic
Expand Down
6 changes: 6 additions & 0 deletions yaml/linux/pytest_hyperexecute_matrix_sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ uploadArtefacts:
path:
- reports/**

report: true
partialReports:
type: json
location: reports/
frameworkName: extent

testSuites:
- pytest -s --verbose --html=reports/report.html $files

Expand Down
9 changes: 7 additions & 2 deletions yaml/mac/pytest_hyperexecute_autosplit_sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ retryOnFailure: true
maxRetries: 1
concurrency: 2

mergeArtifacts: true

env:
# PAT: ${{ .secrets.testKey }}
TARGET_OS: MacOS Catalina
Expand All @@ -32,11 +30,18 @@ runtime:
language: python
version: "3"

mergeArtifacts: true
uploadArtefacts:
- name: TestReports
path:
- reports/**

report: true
partialReports:
type: json
location: reports/
frameworkName: extent

testDiscovery:
type: raw
mode: dynamic
Expand Down
6 changes: 6 additions & 0 deletions yaml/mac/pytest_hyperexecute_matrix_sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ uploadArtefacts:
path:
- reports/**

report: true
partialReports:
type: json
location: reports/
frameworkName: extent

testSuites:
- python3 -m pytest -s --verbose --html=reports/report.html $files

Expand Down
6 changes: 6 additions & 0 deletions yaml/pytest_hyperexexcute_hybrid_sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ uploadArtefacts:
path:
- reports/**

report: true
partialReports:
type: json
location: reports/
frameworkName: extent

testDiscovery:
type: raw
mode: dynamic
Expand Down
9 changes: 7 additions & 2 deletions yaml/win/pytest_hyperexecute_autosplit_sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ retryOnFailure: true
maxRetries: 1
concurrency: 2

mergeArtifacts: true

env:
# PAT: ${{ .secrets.testKey }}
TARGET_OS: Windows 10
Expand All @@ -31,11 +29,18 @@ runtime:
language: python
version: "3"

mergeArtifacts: true
uploadArtefacts:
- name: TestReports
path:
- reports/**

report: true
partialReports:
type: json
location: reports/
frameworkName: extent

testDiscovery:
type: raw
mode: dynamic
Expand Down
6 changes: 6 additions & 0 deletions yaml/win/pytest_hyperexecute_matrix_sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ uploadArtefacts:
path:
- reports/**

report: true
partialReports:
type: json
location: reports/
frameworkName: extent

testSuites:
- pytest -s --verbose --html=reports/report.html $files

Expand Down