Coverage for compiler_admin / commands / info.py: 100%

10 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-04-28 05:48 +0000

1import click 

2 

3from compiler_admin import __version__ as version 

4from compiler_admin.services.google import GoogleService 

5 

6 

7@click.command() 

8def info(): 

9 """Print information about the configured environment.""" 

10 click.echo(f"compiler-admin, version {version}") 

11 

12 google = GoogleService() 

13 

14 google.gam_command(("version",)) 

15 google.gam_command(("info", "domain")) 

16 google.gyb_command(("--version",))