Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feat/selectable-db-qu…
Browse files Browse the repository at this point in the history
…ery-performance-logging
  • Loading branch information
saibatizoku committed May 23, 2024
2 parents 728e790 + 976b02e commit 710bb82
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .config/dictionaries/project.dic
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ asmjs
asyncio
asyncpg
auditability
backendpython
bech
bkioshn
bluefireteam
Expand Down Expand Up @@ -78,6 +79,7 @@ Joaquín
jorm
jormungandr
Jörmungandr
junitxml
junitreport
Keyhash
keyserver
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/generate-allure-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,18 @@ jobs:
target_flags:
runner_address: ${{ secrets.EARTHLY_SATELLITE_ADDRESS }}
artifact: "false"

- name: Get backend python test report
uses: input-output-hk/catalyst-ci/actions/run@master
if: always()
continue-on-error: true
with:
earthfile: ./catalyst-gateway/tests/api_tests/
flags: --allow-privileged
targets: test
target_flags:
runner_address: ${{ secrets.EARTHLY_SATELLITE_ADDRESS }}
artifact: "false"

- name: Collect and upload test reports
uses: actions/upload-artifact@v4
Expand Down
3 changes: 2 additions & 1 deletion catalyst-gateway/tests/api_tests/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
__pycache__
__pycache__
junit-report.xml
5 changes: 4 additions & 1 deletion catalyst-gateway/tests/api_tests/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,8 @@ test:
--load cat-gateway:latest=(../../+package-cat-gateway-with-preprod-snapshot) \
--service cat-gateway \
--allow-privileged
RUN poetry run pytest -s
RUN poetry run pytest -s --junitxml=junit-report.xml

Check failure on line 25 in catalyst-gateway/tests/api_tests/Earthfile

View workflow job for this annotation

GitHub Actions / Generate test reports

Error

The command WITH DOCKER RUN --privileged poetry run pytest -s --junitxml=junit-report.xml did not complete successfully. Exit code 1
END
WAIT
SAVE ARTIFACT junit-report.xml AS LOCAL backendpython.junit-report.xml
END

0 comments on commit 710bb82

Please sign in to comment.