From d13b5905cea59c54729a5d65764e9578a5ffcff7 Mon Sep 17 00:00:00 2001 From: Alexander Puck Neuwirth Date: Mon, 14 Aug 2023 15:18:46 +0200 Subject: [PATCH] Add tests test --- pyproject.toml | 1 - tests/test_tests.py | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 tests/test_tests.py diff --git a/pyproject.toml b/pyproject.toml index ee80b54..7873954 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -70,7 +70,6 @@ format-jinja = "{% if distance == 0 %}{{ base }}{% else %}{{ base }}.{{ distance [tool.pytest.ini_options] minversion = "6.0" -testpaths = ["tests"] addopts = [ "-Werror", "-v", "--cov=metamorph", "--cov-config=.coveragerc", "--cov-append", "--cov-report=term", "--cov-report=xml", "--doctest-modules","--ignore=docs/source/conf.py"] filterwarnings = [ 'ignore: pkg_resources is deprecated as an API:DeprecationWarning' diff --git a/tests/test_tests.py b/tests/test_tests.py new file mode 100644 index 0000000..dcfe68d --- /dev/null +++ b/tests/test_tests.py @@ -0,0 +1,3 @@ +# This test verifies that the pytest suite is working properly. +def test_pass(): + assert True \ No newline at end of file