(self)
| 258 | return list(self._build_profile_map().keys()) |
| 259 | |
| 260 | def _build_profile_map(self): |
| 261 | # This will build the profile map if it has not been created, |
| 262 | # otherwise it will return the cached value. The profile map |
| 263 | # is a list of profile names, to the config values for the profile. |
| 264 | if self._profile_map is None: |
| 265 | self._profile_map = self.full_config['profiles'] |
| 266 | return self._profile_map |
| 267 | |
| 268 | @property |
| 269 | def profile(self): |
no outgoing calls
no test coverage detected