From 6b146ed2d1a2e94ebb9a3882facdc46ebe884af0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6nig?= Date: Mon, 5 Dec 2022 23:13:24 +0100 Subject: [PATCH] Use two-step approach MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christian König --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7a4cc9b7..45c44e24 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -69,8 +69,11 @@ jobs: with: python-version: "3.10" + - name: Install wheel + run: pip install wheel + - name: Install dependencies - run: pip install wheel && pip install -r test/requirements.txt + run: pip install -r test/requirements.txt - name: Test with tox run: tox -c test/tox.${DISTRO}.ini