pyright-python
pyright-python copied to clipboard
use different venv during local development and during cicd
Hello,
I'm using pyright by is public github action. and I see that pyright has a param venv which can specify the venv path, I would like to know that, during the local development, I use venv, it's OK. But during the CICD, I don't use venv, just install everything at system level, in such case, how to keep a single pyproject.toml but with different venv ?
Does pyright support find automatically the package installation path based on python executable used.
It seems that mypy can do that, we do not need to specify which venv to use, just run mypy
Same