From 22372a30faa4b015c8fcfabb99d11417e85da99d Mon Sep 17 00:00:00 2001 From: Michael Panchenko Date: Sat, 28 Jun 2025 16:59:32 +0200 Subject: [PATCH] Removed pytest ini (all pytest config should happen in pyproject.toml) Added csharp to markers --- pyproject.toml | 2 ++ pytest.ini | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 pytest.ini diff --git a/pyproject.toml b/pyproject.toml index 21d2fa8..1bb7a78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -271,6 +271,7 @@ max-complexity = 20 ] [tool.pytest.ini_options] +addopts = "--snapshot-patch-pycharm-diff" markers = [ "python: language server running for Python", "go: language server running for Go", @@ -278,6 +279,7 @@ markers = [ "rust: language server running for Rust", "typescript: language server running for TypeScript", "php: language server running for PHP", + "csharp: language server running for C#", "snapshot: snapshot tests for symbolic editing operations", "isolated_process: test runs with process isolated agent", ] diff --git a/pytest.ini b/pytest.ini deleted file mode 100644 index 22e867b..0000000 --- a/pytest.ini +++ /dev/null @@ -1,2 +0,0 @@ -[pytest] -addopts = --snapshot-patch-pycharm-diff