Skip to content

Commit

Permalink
fix tox
Browse files Browse the repository at this point in the history
  • Loading branch information
boromir674 committed Nov 16, 2023
1 parent 14d480f commit 224079d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ basepython = {env:TOXPYTHON:python3}
setenv =
{[testenv]setenv}
# default value is ./.tox/dist/
WHEELS_DEST = {toxinidir}{/}pip_wheel
WHEELS_DEST = {toxinidir}{/}wheels
skip_install = true
changedir = {toxinidir}
commands =
pip wheel --wheel-dir {env:WHEELS_DEST} {toxinidir}
python -c 'from pathlib import Path; p = Path("{env:WHEELS_DEST}"); print( f"\n --- WHEELS in dir \{p\}:" ); print( [i.name for i in p.iterdir()] );'
pip wheel --wheel-dir {env:WHEELS_LOCATION:{env:WHEELS_DEST}} {toxinidir}
python -c 'from pathlib import Path; p = Path("{env:WHEELS_LOCATION:{env:WHEELS_DEST}}"); print( f"\n --- WHEELS in dir \{p\}:" ); print( [i.name for i in p.iterdir()] );'

# export WHEELS_DEST=wheels && tox -e pip_wheel

Expand Down

0 comments on commit 224079d

Please sign in to comment.