From 8fda4b39e6c987055b7a2dd0895fc64755ad418a Mon Sep 17 00:00:00 2001 From: Kishan Kumar Ganguly Date: Fri, 30 Aug 2024 02:58:46 +0000 Subject: [PATCH] reverted coverage --- README.md | 3 +-- calculator_test.py | 3 +-- coverage-badge.svg | 1 - 3 files changed, 2 insertions(+), 5 deletions(-) delete mode 100644 coverage-badge.svg diff --git a/README.md b/README.md index d95db59..4a5b26f 100644 --- a/README.md +++ b/README.md @@ -4,5 +4,4 @@ ![Static Badge](https://img.shields.io/badge/language-python-3670A0?style=for-the-badge&logo=python) ![Static Badge](https://img.shields.io/badge/Platform-Linux-FCC624?style=for-the-badge&logo=linux&logoColor=black) License: GPL v3 -[![Python application](https://github.com/TeamBenign/HW1/actions/workflows/python-app.yml/badge.svg)](https://github.com/TeamBenign/HW1/actions/workflows/python-app.yml) -[![Coverage Status](coverage-badge.svg?dummy=8484744)](htmlcov/index.html) \ No newline at end of file +[![Python application](https://github.com/TeamBenign/HW1/actions/workflows/python-app.yml/badge.svg)](https://github.com/TeamBenign/HW1/actions/workflows/python-app.yml) \ No newline at end of file diff --git a/calculator_test.py b/calculator_test.py index 7549e96..ffeef48 100644 --- a/calculator_test.py +++ b/calculator_test.py @@ -11,8 +11,7 @@ @pytest.mark.parametrize("a,b,output", division_testdata) def test_division_numeric(a,b,output): assert divide(a,b) == output -""" + @pytest.mark.parametrize("arr,output", largest_testdata) def test_largest_numeric(arr,output): assert largest(arr) == output -""" \ No newline at end of file diff --git a/coverage-badge.svg b/coverage-badge.svg deleted file mode 100644 index 6a4e15a..0000000 --- a/coverage-badge.svg +++ /dev/null @@ -1 +0,0 @@ -coverage: 100.00%coverage100.00% \ No newline at end of file