Coverage for C:\Repos\ekr-pylint\pylint\config\environment_variable.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v6.4, created at 2022-05-24 10:21 -0500

1# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html 

2# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE 

3# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt 

4 

5import warnings 

6 

7from pylint.config.find_default_config_files import find_pylintrc 

8 

9with warnings.catch_warnings(): 

10 warnings.simplefilter("ignore") 

11 PYLINTRC = find_pylintrc()