Skip to content

Commit 503585a

Browse files
authored
Merge branch 'master' into master
2 parents 781fef3 + d03d151 commit 503585a

File tree

118 files changed

+25476
-1456
lines changed

Some content is hidden

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

118 files changed

+25476
-1456
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,16 @@ https://github.com/Azure/SONiC/blob/gh-pages/CONTRIBUTING.md
66
77
If this is a bug fix, make sure your description includes "closes #xxxx",
88
"fixes #xxxx" or "resolves #xxxx" so that GitHub automatically closes the related
9-
issue when the PR is merged
9+
issue when the PR is merged.
10+
11+
If you are adding/modifying/removing any command or utility script, please also
12+
make sure to add/modify/remove any unit tests from the sonic-utilities-tests
13+
directory as appropriate.
14+
15+
If you are modifying or removing an existing 'show', 'config' or 'sonic-clear'
16+
subcommand, or you are adding a new subcommand, please make sure you also
17+
update the Command Line Reference Guide (doc/Command-Reference.md) to reflect
18+
your changes.
1019
1120
Please provide the following information:
1221
-->
@@ -21,5 +30,3 @@ Please provide the following information:
2130

2231
**- New command output (if the output of a command-line utility has changed)**
2332

24-
-->
25-

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@ build/
22
deb_dist/
33
dist/
44
*.egg-info/
5+
*.pyc
6+
.cache
7+
*.tar.gz

README.md

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
[![Total alerts](https://img.shields.io/lgtm/alerts/g/Azure/sonic-utilities.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/Azure/sonic-utilities/alerts/)
2+
[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/Azure/sonic-utilities.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/Azure/sonic-utilities/context:python)
3+
4+
[![Build](https://sonic-jenkins.westus2.cloudapp.azure.com/job/common/job/sonic-utilities-build/badge/icon)](https://sonic-jenkins.westus2.cloudapp.azure.com/job/common/job/sonic-utilities-build/)
5+
16
# SONiC: Software for Open Networking in the Cloud
27

38
## sonic-utilities
@@ -23,21 +28,21 @@ Guide for performing commits:
2328
* Use a standard commit message format:
2429

2530
> [component/folder touched]: Description intent of your changes
26-
>
31+
>
2732
> [List of changes]
28-
>
33+
>
2934
> Signed-off-by: Your Name [email protected]
30-
35+
3136
For example:
3237

3338
> swss-common: Stabilize the ConsumerTable
34-
>
39+
>
3540
> * Fixing autoreconf
3641
> * Fixing unit-tests by adding checkers and initialize the DB before start
3742
> * Adding the ability to select from multiple channels
38-
> * Health-Monitor - The idea of the patch is that if something went wrong with the notification channel,
43+
> * Health-Monitor - The idea of the patch is that if something went wrong with the notification channel,
3944
> we will have the option to know about it (Query the LLEN table length).
40-
>
45+
>
4146
> Signed-off-by: John Doe [email protected]
4247
4348

0 commit comments

Comments
 (0)