From e4713b533479c8742f8c2fddbea4786a0d00974d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Br=C3=A9nainn=20Woodsend?= Date: Sat, 18 Jun 2022 15:19:32 +0100 Subject: [PATCH] Experimentally remove ugly hack. --- .github/workflows/test.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3aae7ecf..b89bc0e7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -78,11 +78,15 @@ jobs: - name: Test run: | # Generate the version.h file so that the docker image does not depend on git. - python setup.py || true docker run -v "$PWD:/io" --platform=linux/${{ matrix.architecture }} python:alpine ash -c ' - apk add gcc g++ musl-dev + apk add gcc g++ musl-dev git cd /io - pip install --no-build-isolation . pytest + ls -a . + ls -a .git + git status + git show + git tag -l + pip install . pytest pytest '