Coverage for pyquickhelper/helpgen/help_usage.py: 100%

1 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-06-03 02:21 +0200

1""" 

2@file 

3@brief Help messages. 

4""" 

5 

6 

7def get_help_usage(): 

8 """ 

9 Returns the usage ``python setup.py build_sphinx``. 

10 """ 

11 return ( # pragma: no cover 

12 """ 

13 This command will build the documentation form the source. 

14 It will not work from the installed package. 

15 This is a custom build, the regular options with build_sphinx will not work. 

16 The output will be copied in folder dist. 

17 

18 Usage: 

19 

20 python setup.py build_sphinx 

21 """.replace(" ", ""))