Skip to content

Commit e11999c

Browse files
committed
test pr
Signed-off-by: Benny Zlotnik <bzlotnik@redhat.com>
1 parent be69032 commit e11999c

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/python-tests.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,12 @@ jobs:
7575
if: steps.cache-fedora-cloud-images.outputs.cache-hit != 'true'
7676
run: |
7777
for arch in aarch64 x86_64; do
78-
curl -L --output "python/packages/jumpstarter-driver-qemu/images/Fedora-Cloud-Base-Generic-41-1.4.${arch}.qcow2" \
79-
"https://download.fedoraproject.org/pub/fedora/linux/releases/41/Cloud/${arch}/images/Fedora-Cloud-Base-Generic-41-1.4.${arch}.qcow2"
78+
curl -vvv -L --output "python/packages/jumpstarter-driver-qemu/images/Fedora-Cloud-Base-Generic-41-1.4.${arch}.qcow2" \
79+
"https://dl.fedoraproject.org/pub/fedora/linux/releases/41/Cloud/${arch}/images/Fedora-Cloud-Base-Generic-41-1.4.${arch}.qcow2"
80+
done
81+
ls -lsh python/packages/jumpstarter-driver-qemu/images
82+
for file in python/packages/jumpstarter-driver-qemu/images/*.qcow2; do
83+
cat $file
8084
done
8185
8286
- name: Run pytest

python/packages/jumpstarter-cli/jumpstarter_cli/shell.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ def _warn_about_expired_token(lease_name: str, selector: str) -> None:
2727
click.echo(click.style(f"To reconnect: JMP_LEASE={lease_name} jmp shell", fg="cyan"))
2828

2929

30+
# test
3031
async def _monitor_token_expiry(config, cancel_scope) -> None:
3132
"""Monitor token expiry and warn user."""
3233
token = getattr(config, "token", None)

0 commit comments

Comments
 (0)