-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into enh/user-notifications
- Loading branch information
Showing
80 changed files
with
430 additions
and
785 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -450,6 +450,51 @@ jobs: | |
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
unit-test-webserver-04: | ||
needs: changes | ||
if: ${{ needs.changes.outputs.webserver == 'true' || github.event_name == 'push' }} | ||
timeout-minutes: 25 # if this timeout gets too small, then split the tests | ||
name: "[unit] webserver 04" | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
python: ["3.11"] | ||
os: [ubuntu-22.04] | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: setup docker buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v3 | ||
with: | ||
driver: docker-container | ||
- name: setup python environment | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
- name: install uv | ||
uses: astral-sh/setup-uv@v3 | ||
with: | ||
version: "0.4.x" | ||
enable-cache: false | ||
cache-dependency-glob: "**/web/server/requirements/ci.txt" | ||
- name: show system version | ||
run: ./ci/helpers/show_system_versions.bash | ||
- name: install webserver | ||
run: ./ci/github/unit-testing/webserver.bash install | ||
- name: test | ||
run: ./ci/github/unit-testing/webserver.bash test_with_db 04 | ||
- uses: codecov/[email protected] | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
with: | ||
flags: unittests #optional | ||
- name: Upload test results to Codecov | ||
if: ${{ !cancelled() }} | ||
uses: codecov/test-results-action@v1 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
unit-test-storage: | ||
needs: changes | ||
if: ${{ needs.changes.outputs.storage == 'true' || github.event_name == 'push' }} | ||
|
@@ -1875,6 +1920,7 @@ jobs: | |
unit-test-webserver-01, | ||
unit-test-webserver-02, | ||
unit-test-webserver-03, | ||
unit-test-webserver-04, | ||
] | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
9 changes: 0 additions & 9 deletions
9
...s/service-library/src/servicelib/rabbitmq/rpc_interfaces/resource_usage_tracker/errors.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 0 additions & 20 deletions
20
services/resource-usage-tracker/src/simcore_service_resource_usage_tracker/core/errors.py
This file was deleted.
Oops, something went wrong.
File renamed without changes.
Oops, something went wrong.