Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderegg committed Oct 28, 2024
1 parent 3dfcc85 commit 8bc0f9e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 16 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/ci-testing-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1445,7 +1445,7 @@ jobs:
with:
version: "0.4.x"
enable-cache: true
cache-dependency-glob: ""
cache-dependency-glob: "**/ci/helpers/requirements.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -1929,7 +1929,7 @@ jobs:
with:
version: "0.4.x"
enable-cache: true
cache-dependency-glob: ""
cache-dependency-glob: "**/web/server/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -1992,7 +1992,7 @@ jobs:
with:
version: "0.4.x"
enable-cache: true
cache-dependency-glob: ""
cache-dependency-glob: "**/web/server/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -2055,7 +2055,7 @@ jobs:
with:
version: "0.4.x"
enable-cache: true
cache-dependency-glob: ""
cache-dependency-glob: "**/director-v2/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -2122,7 +2122,7 @@ jobs:
with:
version: "0.4.x"
enable-cache: true
cache-dependency-glob: ""
cache-dependency-glob: "**/director-v2/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -2187,7 +2187,7 @@ jobs:
with:
version: "0.4.x"
enable-cache: true
cache-dependency-glob: ""
cache-dependency-glob: "**/dynamic-sidecar/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -2251,7 +2251,7 @@ jobs:
with:
version: "0.4.x"
enable-cache: true
cache-dependency-glob: ""
cache-dependency-glob: "**/osparc-gateway-server/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -2328,7 +2328,7 @@ jobs:
with:
version: "0.4.x"
enable-cache: true
cache-dependency-glob: ""
cache-dependency-glob: "**/simcore-sdk/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -2415,7 +2415,7 @@ jobs:
with:
version: "0.4.x"
enable-cache: true
cache-dependency-glob: ""
cache-dependency-glob: "**/public-api/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -2475,7 +2475,7 @@ jobs:
with:
version: "0.4.x"
enable-cache: true
cache-dependency-glob: ""
cache-dependency-glob: "**/swarm-deploy/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down Expand Up @@ -2546,7 +2546,7 @@ jobs:
with:
version: "0.4.x"
enable-cache: true
cache-dependency-glob: ""
cache-dependency-glob: "**/e2e/requirements/requirements.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: setup
Expand Down Expand Up @@ -2609,7 +2609,7 @@ jobs:
with:
version: "0.4.x"
enable-cache: true
cache-dependency-glob: ""
cache-dependency-glob: "**/e2e-playwright/requirements/ci.txt"
- name: expose github runtime for buildx
uses: crazy-max/ghaction-github-runtime@v3
- name: download docker images
Expand Down Expand Up @@ -2671,7 +2671,7 @@ jobs:
with:
version: "0.4.x"
enable-cache: true
cache-dependency-glob: ""
cache-dependency-glob: "**/environment-setup/requirements/ci.txt"
- name: show system version
run: ./ci/helpers/show_system_versions.bash
- name: install
Expand Down
1 change: 0 additions & 1 deletion ci/github/unit-testing/notifications-library.bash
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ set -o pipefail # don't hide errors within pipes
IFS=$'\n\t'

install() {
bash ci/helpers/ensure_python_pip.bash
make devenv
# shellcheck source=/dev/null
source .venv/bin/activate
Expand Down
3 changes: 1 addition & 2 deletions ci/github/unit-testing/python-linting.bash
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ install() {
make devenv
# shellcheck source=/dev/null
source .venv/bin/activate
bash ci/helpers/ensure_python_pip.bash
bash ci/helpers/install_pylint.bash
pip freeze
uv pip freeze
}

test() {
Expand Down
1 change: 1 addition & 0 deletions ci/helpers/install_pylint.bash
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ PYLINT_VERSION="$(grep pylint== $REQUIREMENTS | awk '{print $1}')"
uv pip install "$PYLINT_VERSION"

# Minimal packages to pass linter
echo "$CURDIR/requirements.txt"
uv pip install -r "$CURDIR/requirements.txt"

echo "INFO:" "$(pylint --version)" "@" "$(command -v pylint)"

0 comments on commit 8bc0f9e

Please sign in to comment.