Skip to content

Commit 270c56c

Browse files
authored
Merge pull request #2 from Azure/master
Merge to fork from azure master
2 parents 2270495 + 3f363be commit 270c56c

File tree

3,733 files changed

+4661184
-643664
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,733 files changed

+4661184
-643664
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 51 deletions
This file was deleted.
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
name: Az module bug report
3+
about: Report errors or unexpected behaviors for the Az module
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
<!--
11+
12+
- Make sure you are able to reproduce this issue on the latest released version of Az
13+
- https://www.powershellgallery.com/packages/Az
14+
- Please search the existing issues to see if there has been a similar issue filed
15+
- For issue related to importing a module, please refer to our troubleshooting guide:
16+
- https://github.com/Azure/azure-powershell/blob/master/documentation/troubleshoot-module-load.md
17+
18+
-->
19+
20+
## Description
21+
22+
23+
24+
## Steps to reproduce
25+
26+
```powershell
27+
28+
```
29+
30+
## Environment data
31+
32+
<!-- Please run $PSVersionTable and paste the output in the below code block -->
33+
34+
```
35+
36+
```
37+
38+
## Module versions
39+
40+
<!-- Please run (Get-Module -Name Az.* -ListAvailable) and paste the output in the below code block -->
41+
42+
```powershell
43+
44+
```
45+
46+
## Debug output
47+
48+
<!-- Set $DebugPreference='Continue' before running the repro and paste the resulting debug stream in the below code block -->
49+
50+
```
51+
52+
```
53+
54+
## Error output
55+
56+
<!-- Please run Resolve-AzureRmError and paste the output in the below code block -->
57+
58+
```
59+
60+
```
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
name: AzureRM module bug report
3+
about: Report errors or unexpected behaviors for the AzureRM module
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
<!--
11+
12+
- The AzureRM module has been replaced by the Az module; please see the following document for more information:
13+
- https://docs.microsoft.com/en-us/powershell/azure/new-azureps-module-az
14+
- If you are able to, please migrate to the Az module and see if the issue is reproducible
15+
- If so, please file an issue using the Az module template
16+
- Please search the existing issues to see if there has been a similar issue filed
17+
18+
-->
19+
20+
## Description
21+
22+
23+
24+
## Steps to reproduce
25+
26+
```powershell
27+
28+
```
29+
30+
## Module versions
31+
32+
<!-- Please run (Get-Module -Name AzureRM* -ListAvailable) and paste the output in the below code block -->
33+
34+
```powershell
35+
36+
```
37+
38+
## Debug output
39+
40+
<!-- Set $DebugPreference='Continue' before running the repro and paste the resulting debug stream in the below code block -->
41+
42+
```
43+
44+
```
45+
46+
## Error output
47+
48+
<!-- Please run Resolve-AzureRmError and paste the output in the below code block -->
49+
50+
```
51+
52+
```
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: Feature request
3+
about: Suggest a new feature or improvement
4+
title: ''
5+
labels: Feature Request
6+
assignees: ''
7+
8+
---
9+
10+
## Description of the new feature
11+
12+
## Proposed implementation details (optional)
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: Internal issue
3+
about: Azure PowerShell team only
4+
title: ''
5+
labels: Azure PS Team
6+
assignees: ''
7+
8+
---
9+
10+
## Description
11+
12+
## Cost

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Azure PowerShell specific
2+
Net472Tests/
23
artifacts/
34
src/Stack/
45
src/local-artifacts/*

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ dotnet: 2.1.400
55
dist: trusty
66

77
env:
8-
- NAME="azure-powershell-core" CONFIG="Debug"
8+
- NAME="azure-powershell-core" CONFIG="Debug" TESTS_TO_RUN="Core"
9+
- NAME="azure-powershell-core" CONFIG="Debug" TESTS_TO_RUN="NonCore"
910

1011
services:
1112
- docker
@@ -24,7 +25,7 @@ before_install:
2425

2526
# https://github.com/travis-ci/travis-ci/issues/1066#issuecomment-383489298
2627
script:
27-
- sudo dotnet msbuild build.proj /t:Full /p:Configuration=$CONFIG || travis_terminate 1
28+
- sudo dotnet msbuild build.proj /t:Full /p:ExcludeAuthenticators=true /p:Configuration=$CONFIG /p:TestsToRun=$TESTS_TO_RUN || travis_terminate 1
2829

2930
after_success:
3031
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then

0 commit comments

Comments
 (0)