mirror of
https://github.com/logos-messaging/logos-messaging-interop-tests.git
synced 2026-05-28 21:39:30 +00:00
Make changes to reports collecting
This commit is contained in:
parent
d5dcd4270b
commit
bc8f1faa68
12
.github/workflows/test_common.yml
vendored
12
.github/workflows/test_common.yml
vendored
@ -57,11 +57,11 @@ jobs:
|
|||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
if [ "${{ matrix.shard }}" == 7 ]; then
|
if [ "${{ matrix.shard }}" == 7 ]; then
|
||||||
pytest --reruns 2 --dist=loadgroup tests/store/test_cursor_many_msgs.py -n 1 --maxfail=1
|
pytest --reruns 2 --dist=loadgroup tests/store/test_cursor_many_msgs.py -n 1 --maxfail=1 --alluredir=allure-results-${{ matrix.shard }}
|
||||||
elif [ "${{ matrix.shard }}" == 1 ]; then
|
elif [ "${{ matrix.shard }}" == 1 ]; then
|
||||||
pytest --dist=loadgroup tests/relay/test_rln.py -n 1
|
pytest --dist=loadgroup tests/relay/test_rln.py -n 1 --alluredir=allure-results-${{ matrix.shard }}
|
||||||
elif [ "${{ matrix.shard }}" != 1 ]; then
|
elif [ "${{ matrix.shard }}" != 1 ]; then
|
||||||
pytest --dist=loadgroup --ignore=tests/relay/test_rln.py --ignore=tests/store/test_cursor_many_msgs.py --reruns 2 -n=4 --shard-id=${{ matrix.shard }} --num-shards=13 --alluredir=allure-results
|
pytest --dist=loadgroup --ignore=tests/relay/test_rln.py --ignore=tests/store/test_cursor_many_msgs.py --reruns 2 -n=4 --shard-id=${{ matrix.shard }} --num-shards=13 --alluredir=allure-results-${{ matrix.shard }}
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -70,7 +70,7 @@ jobs:
|
|||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: allure-results-${{ matrix.shard }}
|
name: allure-results-${{ matrix.shard }}
|
||||||
path: allure-results/
|
path: allure-results-${{ matrix.shard }}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -81,7 +81,7 @@ jobs:
|
|||||||
- name: Download all allure results
|
- name: Download all allure results
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
path: allure-results
|
path: all-results
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
|
|
||||||
- name: Get allure history
|
- name: Get allure history
|
||||||
@ -96,7 +96,7 @@ jobs:
|
|||||||
if: always()
|
if: always()
|
||||||
id: allure-report
|
id: allure-report
|
||||||
with:
|
with:
|
||||||
allure_results: allure-results
|
allure_results: all-results
|
||||||
gh_pages: gh-pages/${{ env.CALLER }}
|
gh_pages: gh-pages/${{ env.CALLER }}
|
||||||
allure_history: allure-history
|
allure_history: allure-history
|
||||||
keep_reports: 30
|
keep_reports: 30
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user