Return whether the active fbuild executable exposes ``ci``.
()
| 211 | |
| 212 | @lru_cache(maxsize=1) |
| 213 | def fbuild_supports_ci() -> bool: |
| 214 | """Return whether the active fbuild executable exposes ``ci``.""" |
| 215 | return _fbuild_supports_subcommand("ci") |
| 216 | |
| 217 | |
| 218 | @lru_cache(maxsize=1) |
no test coverage detected