From 177415bc016fcd3f80470fdedd47bf8990f734dc Mon Sep 17 00:00:00 2001 From: Simon Halvorsen Date: Fri, 12 Jun 2026 18:27:38 +0200 Subject: [PATCH] Fix: cf-remote install . rather than install "dist/*.whl" --- .github/workflows/tests.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6a2323d..f65dad4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -83,8 +83,10 @@ jobs: run: python -m pytest - name: Install run: | - python setup.py sdist bdist_wheel - python -m pip install dist/cf_remote-*.whl + # python setup.py sdist bdist_wheel + # python -m pip install dist/cf_remote-*.whl + # TODO: Figure out a way to use caching and pyenv rather than force install . + pip install . --force - name: Sanity check run: cf-remote -V - name: Run docker test