File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1717 - name : Install dependencies
1818 run : |
1919 python -m pip install --upgrade pip
20- pip install ".[dev]"
20+ python -m pip install ".[dev]"
2121 - name : Analysing the code with pylint
2222 run : |
2323 pylint featuremanagement
2929 uses : streetsidesoftware/cspell-action@v6.8.0
3030 - name : Test with pytest
3131 run : |
32- pip install ".[test]"
32+ python -m pip install ".[test]"
3333 pytest tests --doctest-modules --cov-report=xml --cov-report=html
3434 - name : Analysing the samples with pylint
3535 run : |
36- pip install -r samples/requirements.txt
36+ python -m pip install -r samples/requirements.txt
3737 pylint --disable=missing-function-docstring,missing-class-docstring samples tests
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ min-public-methods = 1
1414max-branches = 20
1515max-returns = 7
1616
17- [tool .pylint ."messages control " ]
17+ [tool .pylint ."messages_control " ]
1818disable = [" duplicate-code" ]
1919
2020[build-system ]
@@ -60,8 +60,8 @@ Issues = "https://github.com/microsoft/FeatureManagement-Python/issues"
6060[project .optional-dependencies ]
6161AzureMonitor = [" azure-monitor-events-extension<2.0.0" ]
6262test = [
63- " azure-monitor-opentelemetry" ,
64- " azure-monitor-events-extension" ,
63+ " azure-monitor-opentelemetry < 2.0.0 " ,
64+ " azure-monitor-events-extension < 2.0.0 " ,
6565]
6666dev = [
6767 " pytest >= 7.0.0, < 10.0.0" ,
You can’t perform that action at this time.
0 commit comments