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

build: Fix tox installation #341

Merged
merged 1 commit into from
Dec 11, 2024
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ jobs:
with:
name: built-charm
path: built/

- name: Get Charm Under Test Path
id: charm-path
run: echo "charm_path=$(find built/ -name '*.charm' -type f -print)" >> $GITHUB_OUTPUT

- name: Fetch KV Requirer Charm
uses: actions/download-artifact@v4
with:
name: kv-requirer-charm
path: kv-requirer/

- name: Get KV Requirer Charm Path
id: kv-requirer-charm-path
run: echo "charm_path=$(find kv-requirer/ -name '*.charm' -type f -print)" >> $GITHUB_OUTPUT

- name: Setup operator environment
uses: charmed-kubernetes/actions-operator@main
with:
Expand All @@ -38,9 +38,9 @@ jobs:

- name: Install UV and Tox
run: |
python3 -m pip uninstall tox -y
pipx uninstall tox
sudo snap install astral-uv --classic
uv tool install tox --with tox-uv
uv tool install tox --with tox-uv --force

- name: Run integration tests
run: |
Expand Down
Loading