Skip to content

Commit 6614918

Browse files
whummerclaude
andcommitted
simplify test setup: remove TcpForwarder tests and custom markers
- Remove test_tcp_forwarder.py (mocked unit tests not adding value) - Remove tests/conftest.py with custom marker logic - Remove marker definitions from pyproject.toml - Tests are now simply run by directory path Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 592544f commit 6614918

File tree

4 files changed

+2
-273
lines changed

4 files changed

+2
-273
lines changed

utils/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ test: venv ## Run all tests
3838
$(VENV_RUN); python -m pytest tests/ -v
3939

4040
test-unit: venv ## Run unit tests only (no Docker required)
41-
$(VENV_RUN); python -m pytest tests/unit/ -v -m unit
41+
$(VENV_RUN); python -m pytest tests/unit/ -v
4242

4343
test-integration: venv ## Run integration tests (Docker required)
44-
$(VENV_RUN); python -m pytest tests/integration/ -v -m integration
44+
$(VENV_RUN); python -m pytest tests/integration/ -v
4545

4646
clean-dist: clean
4747
rm -rf dist/

utils/pyproject.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ include = ["localstack_extensions*"]
4848

4949
[tool.pytest.ini_options]
5050
testpaths = ["tests"]
51-
markers = [
52-
"unit: Unit tests (no Docker/LocalStack required)",
53-
"integration: Integration tests (Docker required, no LocalStack)",
54-
]
5551
filterwarnings = [
5652
"ignore::DeprecationWarning",
5753
]

utils/tests/conftest.py

Lines changed: 0 additions & 33 deletions
This file was deleted.

utils/tests/unit/test_tcp_forwarder.py

Lines changed: 0 additions & 234 deletions
This file was deleted.

0 commit comments

Comments
 (0)