We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 20bcf68 + c8ff1fe commit 2d70291Copy full SHA for 2d70291
1 file changed
Makefile
@@ -56,11 +56,13 @@ TY_EXCLUDES := \
56
57
## Run non-video tests (chat, feeds, moderation, etc.)
58
test:
59
- uv run pytest -m "$(MARKER)" tests/ getstream/ $(VIDEO_IGNORE) $(MANUAL_IGNORE)
+ @uv run pytest -m "$(MARKER)" tests/ getstream/ $(VIDEO_IGNORE) $(MANUAL_IGNORE); \
60
+ ec=$$?; if [ $$ec -eq 5 ]; then echo "No tests matched marker '$(MARKER)' — treating as success."; exit 0; else exit $$ec; fi
61
62
## Run video/WebRTC tests only
63
test-video:
- uv run pytest -m "$(MARKER)" $(VIDEO_PATHS)
64
+ @uv run pytest -m "$(MARKER)" $(VIDEO_PATHS); \
65
66
67
## Run all tests (non-video + video), excluding manual tests
68
test-all:
0 commit comments