Teardown testenvironment for the module: - Remove dummy home dir tree
()
| 64 | |
| 65 | |
| 66 | def teardown_module(): |
| 67 | """Teardown testenvironment for the module: |
| 68 | |
| 69 | - Remove dummy home dir tree |
| 70 | """ |
| 71 | # Note: we remove the parent test dir, which is the root of all test |
| 72 | # subdirs we may have created. Use shutil instead of os.removedirs, so |
| 73 | # that non-empty directories are all recursively removed. |
| 74 | shutil.rmtree(TMP_TEST_DIR) |
| 75 | |
| 76 | |
| 77 | def setup_environment(): |
nothing calls this directly
no outgoing calls
no test coverage detected