Skip to content

Commit

Permalink
fix: Wrong tox env for packaging after rename in 39d89ef (#1924)
Browse files Browse the repository at this point in the history
* fix: Wrong tox env for packaging after rename in 39d89ef

* fix: try installing the wheel with pip3

---------

Co-authored-by: Wolfgang Ulmer <[email protected]>
Co-Authored-By: Eddy Mojica <[email protected]>
  • Loading branch information
3 people authored Nov 22, 2024
1 parent ef10e1a commit a6de719
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
env:
FORCE_COLOR: 1
PY_COLORS: 1
TOXENV: packaging
TOXENV: pkg
TOX_PARALLEL_NO_SPINNER: 1

steps:
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ description =
deps =
build >= 0.7.0
twine
pip
skip_install = true
# Ref: https://twitter.com/di_codes/status/1044358639081975813
commands =
Expand All @@ -124,7 +125,7 @@ commands =
# Validate metadata using twine
twine check --strict {toxinidir}/dist/*
# Install the wheel
sh -c "python3 -m pip install {toxinidir}/dist/*.whl"
sh -c "pip3 install {toxinidir}/dist/*.whl"
# Check if cli was installed
jirashell --help
# Uninstall the wheel
Expand Down

0 comments on commit a6de719

Please sign in to comment.