Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Python 3.12 to satisfy Renovatebot #259

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/run-functional-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ sed -i "s/ build: .*/ image: $image/" docker-compose.yml
echo "Using images:" && grep -E " image:| build: " docker-compose.yml

trap "podman-compose down" QUIT TERM INT HUP EXIT
podman-compose up --no-build -d
podman-compose --verbose pull
podman-compose --verbose up --no-build -d

tox -e functional -- --driver=Chrome
7 changes: 2 additions & 5 deletions .github/workflows/gating.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -183,13 +183,10 @@ jobs:
tags: ${{ steps.build-image.outputs.tags }}
registry: ${{ secrets.REGISTRY_USER && env.REGISTRY || env.GH_REGISTRY }}

- name: Install docker-compose
- name: Install Chromium for functional tests
run: |
echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_20.04/ /" | sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list &&
curl -L "https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_20.04/Release.key" | sudo apt-key add - &&
sudo apt-get -y update &&
sudo apt-get -y install chromium-browser &&
sudo apt-get -y -o Dpkg::Options::="--force-overwrite" install podman
sudo apt-get -y install chromium-browser

- name: Test Image
run: |
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
waiverdb-db:
condition: service_healthy
keycloak:
condition: service_healthy
condition: service_started
network_mode: service:keycloak
healthcheck: &dev-healthcheck
test: >-
Expand Down
Loading
Loading