forked from mirrors/gecko-dev
		
	MozReview-Commit-ID: 5qfK6OygVMH --HG-- rename : third_party/python/pytest/_pytest/vendored_packages/pluggy-0.4.0.dist-info/LICENSE.txt => third_party/python/pluggy/LICENSE rename : third_party/python/pytest/doc/en/example/costlysetup/sub1/__init__.py => third_party/python/pytest/doc/en/example/costlysetup/sub_a/__init__.py rename : third_party/python/pytest/doc/en/example/costlysetup/sub1/__init__.py => third_party/python/pytest/doc/en/example/costlysetup/sub_b/__init__.py rename : third_party/python/pytest/_pytest/_code/__init__.py => third_party/python/pytest/src/_pytest/_code/__init__.py extra : rebase_source : d80873f2b1899decefbddddfc2f69ae045925b81
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			699 B
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			699 B
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
 | 
						|
.. _bash_completion:
 | 
						|
 | 
						|
Setting up bash completion
 | 
						|
==========================
 | 
						|
 | 
						|
When using bash as your shell, ``pytest`` can use argcomplete
 | 
						|
(https://argcomplete.readthedocs.io/) for auto-completion.
 | 
						|
For this ``argcomplete`` needs to be installed **and** enabled.
 | 
						|
 | 
						|
Install argcomplete using::
 | 
						|
 | 
						|
        sudo pip install 'argcomplete>=0.5.7'
 | 
						|
 | 
						|
For global activation of all argcomplete enabled python applications run::
 | 
						|
 | 
						|
    sudo activate-global-python-argcomplete
 | 
						|
 | 
						|
For permanent (but not global) ``pytest`` activation, use::
 | 
						|
 | 
						|
        register-python-argcomplete pytest >> ~/.bashrc
 | 
						|
 | 
						|
For one-time activation of argcomplete for ``pytest`` only, use::
 | 
						|
 | 
						|
        eval "$(register-python-argcomplete pytest)"
 |