From 426a35aa9a44ac657127bc76daa6b65c4a05b4d2 Mon Sep 17 00:00:00 2001 From: Suejung Shin Date: Tue, 23 Jul 2024 17:24:13 -0700 Subject: [PATCH 1/4] test commit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4251cc84..d423b4ef 100644 --- a/README.md +++ b/README.md @@ -16,3 +16,4 @@ For more information, please see the links below. ## License [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fcodecov%2Fexample-python.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fcodecov%2Fexample-python?ref=badge_large) + From de678ee97ddb0f24af428dc20d913f0364c47242 Mon Sep 17 00:00:00 2001 From: Suejung Shin Date: Mon, 5 Aug 2024 17:15:57 -0700 Subject: [PATCH 2/4] test --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d423b4ef..ee6a6721 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # [Codecov](https://codecov.io) Python Example + [![codecov](https://codecov.io/github/codecov/example-python/branch/main/graph/badge.svg?token=tkq655ROg3)](https://app.codecov.io/github/codecov/example-python) [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fcodecov%2Fexample-python.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fcodecov%2Fexample-python?ref=badge_shield) @@ -7,13 +8,15 @@ This example repository shows how Codecov can be integrated with a simple python For more information, please see the links below. ## Links + - [Quick Start](https://docs.codecov.com/docs/quick-start) - [GitHub Tutorial](https://docs.codecov.com/docs/github-tutorial) - [Community Boards](https://community.codecov.io) - [Support](https://codecov.io/support) - [Documentation](https://docs.codecov.io) - ## License + [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fcodecov%2Fexample-python.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fcodecov%2Fexample-python?ref=badge_large) +This is a test From 43d9501901bc6b3391d6244d33bb5bb870e2fe38 Mon Sep 17 00:00:00 2001 From: Suejung Shin Date: Mon, 5 Aug 2024 18:25:59 -0700 Subject: [PATCH 3/4] make test fail --- app/calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/calculator.py b/app/calculator.py index 4f380e8e..530e56db 100644 --- a/app/calculator.py +++ b/app/calculator.py @@ -1,7 +1,7 @@ class Calculator: def add(x, y): - return x + y + return x + y + 1 def subtract(x, y): return x - y From 14773074b47cf7af8cbf0547c76ca0a2b9aff0c4 Mon Sep 17 00:00:00 2001 From: Suejung Shin Date: Mon, 5 Aug 2024 18:28:03 -0700 Subject: [PATCH 4/4] fix test --- app/calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/calculator.py b/app/calculator.py index 530e56db..4f380e8e 100644 --- a/app/calculator.py +++ b/app/calculator.py @@ -1,7 +1,7 @@ class Calculator: def add(x, y): - return x + y + 1 + return x + y def subtract(x, y): return x - y