From 19f8774b0c30a1a7d833a75e5f9cd6d078b13019 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 22 Oct 2024 12:55:39 -0400 Subject: [PATCH] remove traces of pytest --- pyproject.toml | 14 -------------- test/test_basic.py | 5 ----- 2 files changed, 19 deletions(-) delete mode 100644 test/test_basic.py diff --git a/pyproject.toml b/pyproject.toml index d0697808..d4137104 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,6 @@ dependencies = [ ] [project.optional-dependencies] -test = ["pytest>=7"] docs = [ "sphinx>=7"] [project.urls] @@ -49,18 +48,6 @@ Tracker = "https://github.com/mongodb-labs/django-mongodb/issues" [tool.setuptools.dynamic] version = {attr = "django_mongodb.__version__"} -[tool.pytest.ini_options] -minversion = "7" -addopts = ["-ra", "--strict-config", "--strict-markers", "--junitxml=xunit-results/TEST-results.xml"] -testpaths = ["test"] -log_cli_level = "INFO" -norecursedirs = ["test/*"] -faulthandler_timeout = 1500 -xfail_strict = true -filterwarnings = [ - "error" -] - [tool.mypy] strict = true show_error_codes = true @@ -87,7 +74,6 @@ select = [ "PGH", # pygrep-hooks "PIE", # flake8-pie "PL", # pylint - "PT", # flake8-pytest-style "PTH", # flake8-use-pathlib "RET", # flake8-return "RUF", # Ruff-specific diff --git a/test/test_basic.py b/test/test_basic.py deleted file mode 100644 index 22e78256..00000000 --- a/test/test_basic.py +++ /dev/null @@ -1,5 +0,0 @@ -from __future__ import annotations - - -def test_basic(): - pass