(module)
| 41 | |
| 42 | |
| 43 | def setup_module(module): |
| 44 | if os.name != "nt": |
| 45 | validate_host_viable() |
| 46 | # We use a dedicated cluster (instead of common singledc, as in other tests) because |
| 47 | # it's most likely that the test host will only have one local ipv6 address (::1) |
| 48 | # singledc has three |
| 49 | use_cluster(IPV6_CLUSTER_NAME, [1], ipformat='::%d') |
| 50 | |
| 51 | |
| 52 | def teardown_module(): |
nothing calls this directly
no test coverage detected