From 37e24df9dc4b31cc5df0e7ca4b9ac071288e47b5 Mon Sep 17 00:00:00 2001 From: Oliver Falk Date: Thu, 16 Oct 2025 17:54:32 +0200 Subject: [PATCH] Remove pytest.ini as we now use Django test suite --- pytest.ini | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini deleted file mode 100644 index 4174ded..0000000 --- a/pytest.ini +++ /dev/null @@ -1,27 +0,0 @@ -[tool:pytest] -# Pytest configuration for ivatar project - -# Test discovery -testpaths = ivatar -python_files = test_*.py -python_classes = Test* -python_functions = test_* - -# Markers for test categorization -markers = - bluesky: marks tests as requiring Bluesky API credentials (deselect with '-m "not bluesky"') - slow: marks tests as slow (deselect with '-m "not slow"') - integration: marks tests as integration tests - unit: marks tests as unit tests - opentelemetry: marks tests as requiring OpenTelemetry to be enabled - no_opentelemetry: marks tests as requiring OpenTelemetry to be disabled - -# Default options -addopts = - --strict-markers - --strict-config - --verbose - --tb=short - -# Minimum version -minversion = 6.0