Skip to content

Commit

Permalink
Seed setuptools in virtual environments
Browse files Browse the repository at this point in the history
  • Loading branch information
jayqi authored Apr 29, 2024
1 parent bc219fa commit e2851b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ jobs:
PYTHON_BIN=bin/python
fi
echo "=== Testing wheel installation ==="
uv virtualenv .venv-whl
uv virtualenv .venv-whl --seed
uv pip install dist/deon-*.whl --python=.venv-whl/$PYTHON_BIN
.venv-whl/$PYTHON_BIN -m deon --help
echo "=== Testing source installation ==="
uv virtualenv .venv-sdist
uv virtualenv .venv-sdist --seed
uv pip install dist/deon-*.tar.gz --python=.venv-sdist/$PYTHON_BIN
.venv-sdist/$PYTHON_BIN -m deon --help
Expand Down

0 comments on commit e2851b6

Please sign in to comment.