You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> tox -e old
old: recreate env because env type changed from {'name': 'old', 'type': 'VirtualEnvRunner'} to {'name': 'old', 'type': 'PdmRunner'}
old: remove tox env folder C:\project\.tox\old
old: install_deps> python -I -m pip install pytest==8.0 robotframework==6.1.1
old: install_deps> pdm sync --no-self --group test
old: exit 2 (0.05 seconds) C:\project> pdm sync --no-self --group test
old: FAIL code 2 (9.58 seconds)
evaluation failed :( (9.84 seconds)
this is because it's running the command pdm sync --no-self --group test, but when pdm is installed with pyprojectx (see the "inside project" installation method) the command needs to be prefixed with ./pw:
Did you try to also install tox with pyprojectx (in the same tool context as pdm)?
When running tox with ./pw tox, pdm should also be on the PATH.
Alternatively, use pyprojectx 2.1.0 and either add .pyprojectx/main to your PATH or activate the tool context with source .pyprojectx/main/activate
this is because it's running the command
pdm sync --no-self --group test
, but when pdm is installed with pyprojectx (see the "inside project" installation method) the command needs to be prefixed with./pw
:related: pyprojectx/pyprojectx#23
The text was updated successfully, but these errors were encountered: