Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
dc295b8
{Core} Use `from collections.abc import Iterable` to support Python 3…
May 7, 2021
32d2691
{pylint} Disable more checkers to comply with pylint 2.8.0 (#17861)
jiasli May 7, 2021
c06c982
{AppService} Fix linter error in `_github_oauth.py` (#17998)
jiasli May 7, 2021
17f1dd4
Remove failing tests (#17991)
avanigupta May 8, 2021
855a283
[AppConfig] Allow importing key-values with unicode characters from f…
avanigupta May 8, 2021
0914bac
{Core} Always use UTF-8 for command metadata log file encoding (#17996)
jiasli May 8, 2021
b4eab22
{EventHubs} az eventhubs eventhub list: Fix typo in help docs (#17567)
scottsauber May 8, 2021
b5aeb3d
{ServiceBus} az servicebus: fix typos in help docs (#17642)
scottsauber May 8, 2021
c847480
add the nodeslector linux to avoid the check-acr pod to be scheduled …
Shuanglu May 8, 2021
beb2bae
{Storage} Split concatenated words in the help message (#17940)
pzhlkj6612 May 10, 2021
a358a0e
{SQL} Split concatenated words in the help message (#17966)
pzhlkj6612 May 10, 2021
387c49f
[DevTestLabs] az labs create environment: Fix error creating an envir…
NJLangley May 11, 2021
ff91d0a
[RDBMS] Changed IOPS logic for MySQL (#17974)
DaeunYim May 11, 2021
2f75074
{Batch} Add account key and SAS replacers for tests (#18004)
dpwatrous May 11, 2021
55b683e
{Packaging} Remove `pypiwin32` and bump `pywin32` to 300 (#18012)
jiasli May 11, 2021
4a5d742
[ARM] Migrate resource to track2 SDK (#17783)
zhoxing-ms May 12, 2021
dd33467
[AppService] BREAKING CHANGE: az webapp list-runtimes: Add Dotnet6 su…
calvinsID May 12, 2021
49f9900
Fix issue #17792 (#18034)
aressler38 May 12, 2021
7432036
[Packaging] Support Python 3.9 (#17368)
jiasli May 12, 2021
5434b87
[AKS] sdk update (#18031)
haitch May 12, 2021
5c08010
{PrivateDns} Track 2 Migration (#17882)
rajitaaa May 12, 2021
f0c9779
[AKS] az aks create and update azure-rbac (#18026)
Anumita May 12, 2021
5d0b933
Make a fix for set app settings (#18043)
jiansong-msft May 13, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .azure-pipelines/templates/azdev_setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ steps:
chmod +x env/bin/activate
. env/bin/activate
python -m pip install -U pip
pip install azdev==0.1.31
pip install azdev==0.1.32
azdev --version

if [ -z "$CLI_EXT_REPO_PATH" ]; then
Expand Down
16 changes: 12 additions & 4 deletions azure-pipelines-full-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ jobs:
displayName: Automation Test (Profile Latest)
timeoutInMinutes: 120
pool:
vmImage: 'ubuntu-16.04'
vmImage: 'ubuntu-20.04'
strategy:
matrix:
Python36:
python.version: '3.6'
Python38:
python.version: '3.8'
Python39:
python.version: '3.9'
steps:
- template: .azure-pipelines/templates/automation_test.yml
parameters:
Expand All @@ -35,13 +37,15 @@ jobs:
displayName: Automation Test (Profile 2020-09-01)
timeoutInMinutes: 120
pool:
vmImage: 'ubuntu-16.04'
vmImage: 'ubuntu-20.04'
strategy:
matrix:
Python36:
python.version: '3.6'
Python38:
python.version: '3.8'
Python39:
python.version: '3.9'
steps:
- template: .azure-pipelines/templates/automation_test.yml
parameters:
Expand All @@ -53,13 +57,15 @@ jobs:
displayName: Automation Test (Profile 2019-03-01)
timeoutInMinutes: 120
pool:
vmImage: 'ubuntu-16.04'
vmImage: 'ubuntu-20.04'
strategy:
matrix:
Python36:
python.version: '3.6'
Python38:
python.version: '3.8'
Python39:
python.version: '3.9'
steps:
- template: .azure-pipelines/templates/automation_test.yml
parameters:
Expand All @@ -71,13 +77,15 @@ jobs:
displayName: Automation Test (Profile 2018-03-01)
timeoutInMinutes: 120
pool:
vmImage: 'ubuntu-16.04'
vmImage: 'ubuntu-20.04'
strategy:
matrix:
Python36:
python.version: '3.6'
Python38:
python.version: '3.8'
Python39:
python.version: '3.9'
steps:
- template: .azure-pipelines/templates/automation_test.yml
parameters:
Expand Down
Loading