chore: temporarily disable reportportal

This commit is contained in:
Minh141120 2025-08-21 16:28:55 +07:00
parent 8bbc0009f6
commit 0e72bfd117

View File

@ -107,7 +107,7 @@ jobs:
shell: powershell shell: powershell
env: env:
RP_TOKEN: ${{ secrets.RP_TOKEN }} RP_TOKEN: ${{ secrets.RP_TOKEN }}
ENABLE_REPORTPORTAL: 'true' ENABLE_REPORTPORTAL: 'false'
RP_ENDPOINT: 'https://reportportal.menlo.ai' RP_ENDPOINT: 'https://reportportal.menlo.ai'
RP_PROJECT: 'default_personal' RP_PROJECT: 'default_personal'
run: | run: |
@ -223,11 +223,9 @@ jobs:
working-directory: autoqa working-directory: autoqa
run: | run: |
case="${{ inputs.migration_test_case }}" case="${{ inputs.migration_test_case }}"
if [ -n "${case}" ]; then caseArg=""
xvfb-run -a python main.py --enable-migration-test --old-version "${OLD_VERSION}" --new-version "${NEW_VERSION}" --max-turns ${{ inputs.max_turns }} --migration-test-case "${case}" if [ -n "${case}" ]; then caseArg="--migration-test-case \"${case}\""; fi
else xvfb-run -a python main.py --enable-migration-test --old-version "${OLD_VERSION}" --new-version "${NEW_VERSION}" --max-turns ${{ inputs.max_turns }} ${caseArg}
xvfb-run -a python main.py --enable-migration-test --old-version "${OLD_VERSION}" --new-version "${NEW_VERSION}" --max-turns ${{ inputs.max_turns }}
fi
- name: Upload screen recordings - name: Upload screen recordings
if: always() if: always()
@ -308,11 +306,9 @@ jobs:
working-directory: autoqa working-directory: autoqa
run: | run: |
case="${{ inputs.migration_test_case }}" case="${{ inputs.migration_test_case }}"
if [ -n "${case}" ]; then caseArg=""
python main.py --enable-migration-test --old-version "${OLD_VERSION}" --new-version "${NEW_VERSION}" --max-turns ${{ inputs.max_turns }} --migration-test-case "${case}" if [ -n "${case}" ]; then caseArg="--migration-test-case \"${case}\""; fi
else python main.py --enable-migration-test --old-version "${OLD_VERSION}" --new-version "${NEW_VERSION}" --max-turns ${{ inputs.max_turns }} ${caseArg}
python main.py --enable-migration-test --old-version "${OLD_VERSION}" --new-version "${NEW_VERSION}" --max-turns ${{ inputs.max_turns }}
fi
- name: Upload screen recordings - name: Upload screen recordings
if: always() if: always()