We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56d4486 commit db54053Copy full SHA for db54053
4 files changed
azure-pipelines-release.yml
@@ -17,7 +17,7 @@ jobs:
17
steps:
18
- task: UsePythonVersion@0
19
inputs:
20
- versionSpec: '3.7'
+ versionSpec: '3.9'
21
- download: DurablePyCI
22
- script: "rm -r ./azure_functions_durable/_manifest"
23
displayName: 'Remove _manifest folder'
azure-pipelines.yml
@@ -13,7 +13,7 @@ trigger:
13
- v*
14
15
variables:
16
- python.version: '3.7'
+ python.version: '3.9'
baseFolder: .
componentArtifactName: 'azure_functions_durable'
#componentArtifactName: 'dist'
@@ -48,7 +48,7 @@ stages:
48
49
- script: |
50
pip install pytest pytest-azurepipelines
51
- pytest
+ pytest --ignore=samples-v2
52
displayName: 'pytest'
53
- task: ManifestGeneratorTask@0
54
displayName: "SBOM Generation Task"
eng/templates/build.yml
@@ -12,7 +12,7 @@ jobs:
12
- versionSpec: '3.7.x'
+ versionSpec: '3.9.x'
python -m pip install --upgrade pip
pip install -r requirements.txt
@@ -22,12 +22,12 @@ jobs:
24
cd azure
25
- flake8 . --count --show-source --statistics
+ python -m flake8 . --count --show-source --statistics
26
displayName: 'Run lint test with flake8'
27
28
29
30
31
32
33
python setup.py sdist bdist_wheel
noxfile.py
@@ -1,26 +1,26 @@
1
import nox
2
3
-@nox.session(python=["3.7","3.8"])
+@nox.session(python=["3.9","3.11"])
4
def tests(session):
5
# same as pip install -r -requirements.txt
6
session.install("-r", "requirements.txt")
7
session.install("pytest")
8
session.run("pytest", "-v", "tests")
9
10
11
-@nox.session(python=["3.7", "3.8"])
def lint(session):
session.install("flake8")
session.install("flake8-docstrings")
session.run("flake8", "./azure/")
def typecheck(session):
session.install("mypy")
session.run("mypy", "./azure/")
def autopep(session):
session.run("autopep8", "--in-place --aggressive --aggressive --recursive \"./azure/\"")
0 commit comments