tests: test pip install plugin with no-dependency package

This is a simplification to help ensure we don't run into issues like
below because requests gets installed via pip.

```
RemoveError: 'requests' is a dependency of conda and cannot be removed from conda's operating environment.
```
This commit is contained in:
Erik Sundell
2024-02-25 15:04:14 +01:00
parent 02c3d7539b
commit 2fe9912333
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ def tljh_extra_user_conda_packages():
@hookimpl
def tljh_extra_user_pip_packages():
return ["django"]
return ["simplejson"]
@hookimpl