diff --git a/pyproject.toml b/pyproject.toml index f4ed95b..4408c03 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,13 +45,13 @@ numpy = "^1.26.3" matplotlib = "^3.8.0" torch = "^2.2.0" click = "^8.1.7" -coverage = "^7.4.4" -codecov = "^2.1.13" tqdm = "^4.66.2" [tool.poetry.group.test.dependencies] pytest = "^8.0.0" pytest-cov = "^4.1.0" +coverage = "^7.4.4" +codecov = "^2.1.13" [tool.poetry.group.docs.dependencies] sphinx = "^7.2.6" diff --git a/tests/dummy_test/__init__.py b/tests/dummy_test/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/dummy_test/test_dummy.py b/tests/dummy_test/test_dummy.py deleted file mode 100644 index 51e25d3..0000000 --- a/tests/dummy_test/test_dummy.py +++ /dev/null @@ -1,33 +0,0 @@ -def test_dummy(): - - assert True #test: no cover - -# def test_another_dummy(): -# assert False, "This test intentionally fails" - -#Adding a comment to test - - -def test_addition(): - assert 1 + 1 == 2 - -def test_subtraction(): - assert 5 - 3 == 2 - -def test_multiplication(): - assert 2 * 3 == 6 - -def test_division(): - assert 6 / 3 == 2 - -def test_strings(): - assert "hello" == "hello" - -def test_lists(): - assert [1, 2, 3] == [1, 2, 3] - -def test_dicts(): - assert {"key": "value"} == {"key": "value"} - -def test_none(): - assert None is None \ No newline at end of file