Collect the information of the running environments.
()
| 5 | |
| 6 | |
| 7 | def collect_env(): |
| 8 | """Collect the information of the running environments.""" |
| 9 | env_info = collect_base_env() |
| 10 | env_info['diffplanner'] = diffplanner.__version__ + '+' + get_git_hash()[:7] |
| 11 | return env_info |
| 12 | |
| 13 | |
| 14 | if __name__ == '__main__': |
no outgoing calls
no test coverage detected