如何设置 bash 自动补全¶
当使用 bash 作为你的 shell 时,pytest
可以使用 argcomplete (https://kislyuk.github.io/argcomplete/) 进行自动补全。为此,需要安装 并 启用 argcomplete
。
使用以下命令安装 argcomplete
sudo pip install 'argcomplete>=0.5.7'
要全局激活所有启用 argcomplete 的 python 应用程序,请运行
sudo activate-global-python-argcomplete
对于永久(但非全局)pytest
激活,请使用
register-python-argcomplete pytest >> ~/.bashrc
对于仅对 pytest
进行一次性 argcomplete 激活,请使用
eval "$(register-python-argcomplete pytest)"