Skip to content

Commit 5a6254e

Browse files
Merge pull request #14 from shervyna/azdo_pipeline_CI
Azdo pipeline CI status badge+flake8
2 parents 4dc15cb + 7a12299 commit 5a6254e

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
|Branch|Status|
2+
|---|---|
3+
|master|[![Build Status](https://csefy19.visualstudio.com/Durable%20Functions%20Python%20OSS/_apis/build/status/Azure.azure-functions-durable-python?branchName=master)](https://csefy19.visualstudio.com/Durable%20Functions%20Python%20OSS/_build/latest?definitionId=39&branchName=master)|
4+
15
# Durable Functions for Python
26

37
The `azure-functions-durable` [pip](https://pypi.org/project/azure-functions-durable/) package allows you to write [Durable Functions](https://docs.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-overview) for Python(https://docs.microsoft.com/en-us/azure/azure-functions/functions-reference-python). Durable Functions is an extension of [Azure Functions](https://docs.microsoft.com/en-us/azure/azure-functions/functions-overview) that lets you write stateful functions and workflows in a serverless environment. The extension manages state, checkpoints, and restarts for you. Durable Functions' advantages include:

azure-pipelines.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ steps:
2727
- script: |
2828
python setup.py build
2929
displayName: 'Autogenerate gRPC Python files'
30-
30+
31+
- script: |
32+
flake8 . --count --show-source --statistics --exit-zero
33+
displayName: 'Run lint test with flake8'
34+
3135
- script: |
3236
pip install pytest pytest-azurepipelines
3337
pytest

0 commit comments

Comments
 (0)