summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2019-08-01 06:35:20 -0700
committerDavid Lord <davidism@gmail.com>2019-08-01 06:35:20 -0700
commitc2efed8585a9c72d215d447a68209459e922f328 (patch)
treeb0e4b11381561c88bdaeb600a0a91049077da1ff
parent9f1f303ac08d78715b3a29e4b45d9ca3361816ad (diff)
downloadclick-c2efed8585a9c72d215d447a68209459e922f328.tar.gz
fix azure config
-rw-r--r--.azure-pipelines.yml2
-rw-r--r--README.rst11
2 files changed, 4 insertions, 9 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index 6487d77..00e732d 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -32,7 +32,7 @@ strategy:
hasTestResults: false
pool:
- vmImage: $(image)
+ vmImage: $(vmImage)
steps:
- task: UsePythonVersion@0
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