Skip to content

Commit d431ea2

Browse files
authored
πŸ”¨CI: remove webserver integration tests 02 (#8183)
1 parent a723904 commit d431ea2

File tree

7 files changed

+6
-45
lines changed

7 files changed

+6
-45
lines changed

β€Ž.github/workflows/ci-testing-deploy.ymlβ€Ž

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1530,44 +1530,6 @@ jobs:
15301530
with:
15311531
flags: integrationtests #optional
15321532

1533-
integration-test-webserver-02:
1534-
needs: [changes, build-test-images]
1535-
if: ${{ needs.changes.outputs.anything-py == 'true' || needs.changes.outputs.webserver == 'true' || github.event_name == 'push' }}
1536-
timeout-minutes: 30 # if this timeout gets too small, then split the tests
1537-
name: "[int] webserver 02"
1538-
runs-on: ${{ matrix.os }}
1539-
strategy:
1540-
matrix:
1541-
python: ["3.11"]
1542-
os: [ubuntu-24.04]
1543-
fail-fast: false
1544-
steps:
1545-
- uses: actions/checkout@v4
1546-
- name: Setup SimCore environment
1547-
uses: ./.github/actions/setup-simcore-env
1548-
with:
1549-
python-version: ${{ matrix.python }}
1550-
cache-dependency-glob: "**/web/server/requirements/ci.txt"
1551-
- name: Download and load Docker images
1552-
uses: ./.github/actions/download-load-docker-images
1553-
with:
1554-
artifact-name-pattern: 'backend'
1555-
- name: install
1556-
run: ./ci/github/integration-testing/webserver.bash install
1557-
- name: test
1558-
run: ./ci/github/integration-testing/webserver.bash test 02
1559-
- name: upload failed tests logs
1560-
if: ${{ failure() }}
1561-
uses: actions/upload-artifact@v4
1562-
with:
1563-
name: ${{ github.job }}_docker_logs
1564-
path: ./services/web/server/test_failures
1565-
- uses: codecov/codecov-action@v5
1566-
env:
1567-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
1568-
with:
1569-
flags: integrationtests #optional
1570-
15711533
integration-test-director-v2-01:
15721534
needs: [changes, build-test-images]
15731535
if: ${{ needs.changes.outputs.anything-py == 'true' || needs.changes.outputs.director-v2 == 'true' || github.event_name == 'push'}}
@@ -1782,7 +1744,6 @@ jobs:
17821744
integration-test-docker-api-proxy,
17831745
integration-test-simcore-sdk,
17841746
integration-test-webserver-01,
1785-
integration-test-webserver-02,
17861747
]
17871748
runs-on: ubuntu-latest
17881749
steps:
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
# pylint:disable=redefined-outer-name
44

55
"""
6-
Tests raw communication with scicrunch service API
6+
Tests raw communication with scicrunch service API
77
8-
- Use for systematic exploration of the API
9-
- Analyzes responses of the API to known situtations
10-
- Ensures parts of the scicrunch service API that we use do not change interface or behaviour
8+
- Use for systematic exploration of the API
9+
- Analyzes responses of the API to known situtations
10+
- Ensures parts of the scicrunch service API that we use do not change interface or behaviour
1111
12-
NOTE: this is intended for manual testing during development
13-
NOTE: skipped if it does not define a valid SCICRUNCH_API_KEY
12+
NOTE: this is intended for manual testing during development
13+
NOTE: skipped if it does not define a valid SCICRUNCH_API_KEY
1414
"""
1515

1616
import os

0 commit comments

Comments
Β (0)