| Conditions | 1 | 
| Total Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | # Copyright (c) 2016 MetPy Developers. | ||
| 12 | def pytest_report_header(config, startdir): | ||
| 13 | """Add dependency information to pytest output.""" | ||
| 14 |     return ('Dependencies: Matplotlib ({}), NumPy ({}), ' | ||
| 15 |             'Pint ({}), SciPy ({})'.format(matplotlib.__version__, numpy.__version__, | ||
| 16 | pint.__version__, scipy.__version__)) | ||
| 17 |