Skip to content

Commit

Permalink
Experimentally remove ugly hack.
Browse files Browse the repository at this point in the history
  • Loading branch information
bwoodsend committed Jun 18, 2022
1 parent 89feacd commit e4713b5
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -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
'
Expand Down

0 comments on commit e4713b5

Please sign in to comment.