diff mbox series

[net-next] tc-testing: gitignore, ignore standard python artifacts

Message ID 20171031182654.9674-1-bjb@mojatatu.com
State Accepted, archived
Headers show
Series [net-next] tc-testing: gitignore, ignore standard python artifacts | expand

Commit Message

Brenda J. Butler Oct. 31, 2017, 6:26 p.m. UTC
Ignore .pyc files, "python compiled" files, that get created
when a python script is run.  They should never be committed.

Signed-off-by: Brenda J. Butler <bjb@mojatatu.com>
---
 tools/testing/selftests/tc-testing/.gitignore | 1 +
 1 file changed, 1 insertion(+)

Comments

Lucas Bates Oct. 31, 2017, 6:40 p.m. UTC | #1
On Tue, Oct 31, 2017 at 2:26 PM, Brenda J. Butler <bjb@mojatatu.com> wrote:
> Ignore .pyc files, "python compiled" files, that get created
> when a python script is run.  They should never be committed.
>
> Signed-off-by: Brenda J. Butler <bjb@mojatatu.com>
Acked-by: Lucas Bates <lucasb@mojatatu.com>
David Miller Nov. 1, 2017, 2:05 a.m. UTC | #2
From: "Brenda J. Butler" <bjb@mojatatu.com>
Date: Tue, 31 Oct 2017 14:26:54 -0400

> Ignore .pyc files, "python compiled" files, that get created
> when a python script is run.  They should never be committed.
> 
> Signed-off-by: Brenda J. Butler <bjb@mojatatu.com>

Applied.
diff mbox series

Patch

diff --git a/tools/testing/selftests/tc-testing/.gitignore b/tools/testing/selftests/tc-testing/.gitignore
index c18dd8d83cee..7a60b85e148f 100644
--- a/tools/testing/selftests/tc-testing/.gitignore
+++ b/tools/testing/selftests/tc-testing/.gitignore
@@ -1 +1,2 @@ 
 __pycache__/
+*.pyc