From ad5061af33c69dcca21f2750c5f1b55f099f0831 Mon Sep 17 00:00:00 2001 From: Atharva Dharmadhikari <atharva.dharmadhikari@fau.de> Date: Tue, 7 May 2024 21:23:02 +0000 Subject: [PATCH] Update file NumpyTests.py --- src_to_implement/NumpyTests.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src_to_implement/NumpyTests.py b/src_to_implement/NumpyTests.py index a598c4d..888a9a6 100644 --- a/src_to_implement/NumpyTests.py +++ b/src_to_implement/NumpyTests.py @@ -2,11 +2,8 @@ import unittest import numpy as np import tabulate import argparse -import coverage -import pytest_cov -cov = coverage.Coverage() -cov.start() + ID = 0 # identifier for dispatcher class TestCheckers(unittest.TestCase): @@ -328,6 +325,3 @@ if __name__ == '__main__': headers=['Pos', 'Test', "Result", 'Percent in Exercise', 'Percent in Exam'], tablefmt="github")) else: unittest.main() -cov.stop() -cov.save() -cov.html_report(directory='coverage_reports') \ No newline at end of file -- GitLab