Skip to content

Commit

Permalink
Disable results archiving
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommi Oinonen committed May 16, 2024
1 parent a9ee103 commit 05522f2
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/basic_pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@ jobs:
- name: Run unittests
run: |
PYTHONPATH=. pytest test_archiver/tests/ --junit-xml=output.xml
- name: Archive unittest results
if: ${{ always() && (env.archive-name != 0) }}
run: >-
testarchiver
output.xml
--database ${{ secrets.DEMO_ARCHIVE_NAME }}
--host ${{ secrets.ARCHIVE_HOST }}
--user ${{ secrets.ARCHIVE_USER }}
--pw ${{ secrets.ARCHIVE_PW }}
--dbengine postgres
--format pytest-junit
--repository TestArchiver
--team TestArchiver
--series archiver_unittests
--series ${GITHUB_REF##*/}
# - name: Archive unittest results
# if: ${{ always() && (env.archive-name != 0) }}
# run: >-
# testarchiver
# output.xml
# --database ${{ secrets.DEMO_ARCHIVE_NAME }}
# --host ${{ secrets.ARCHIVE_HOST }}
# --user ${{ secrets.ARCHIVE_USER }}
# --pw ${{ secrets.ARCHIVE_PW }}
# --dbengine postgres
# --format pytest-junit
# --repository TestArchiver
# --team TestArchiver
# --series archiver_unittests
# --series ${GITHUB_REF##*/}

# Test packaging
- name: Test building package
Expand Down

0 comments on commit 05522f2

Please sign in to comment.