From c2efed8585a9c72d215d447a68209459e922f328 Mon Sep 17 00:00:00 2001 From: David Lord Date: Thu, 1 Aug 2019 06:35:20 -0700 Subject: fix azure config --- README.rst | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'README.rst') diff --git a/README.rst b/README.rst index 4bd749e..41fb712 100644 --- a/README.rst +++ b/README.rst @@ -39,7 +39,7 @@ What does it look like? Here is an example of a simple Click program: .. code-block:: python import click - + @click.command() @click.option("--count", default=1, help="Number of greetings.") @click.option("--name", prompt="Your name", @@ -48,7 +48,7 @@ What does it look like? Here is an example of a simple Click program: """Simple program that greets NAME for a total of COUNT times.""" for _ in range(count): click.echo("Hello, %s!" % name) - + if __name__ == '__main__': hello() @@ -83,10 +83,5 @@ Links * Releases: https://pypi.org/project/click/ * Code: https://github.com/pallets/click * Issue tracker: https://github.com/pallets/click/issues -* Test status: - - * Linux, Mac: https://travis-ci.org/pallets/click - * Windows: https://ci.appveyor.com/project/pallets/click - -* Test coverage: https://codecov.io/gh/pallets/click +* Test status: https://dev.azure.com/pallets/click/_build * Official chat: https://discord.gg/t6rrQZH -- cgit v1.2.1