temporarily subset integration tests

This commit is contained in:
Chester Curme 2025-05-20 14:13:11 -04:00
parent be39842019
commit 82a7f11c32
2 changed files with 3 additions and 2 deletions

View File

@ -14,7 +14,7 @@ test tests:
uv run --group test pytest -vvv --disable-socket --allow-unix-socket $(TEST_FILE)
integration_test integration_tests:
uv run --group test --group test_integration pytest -vvv --timeout 30 $(TEST_FILE)
uv run --group test --group test_integration pytest -vvv --timeout 30 $(TEST_FILE) -k test_stream_time
test_watch:
uv run --group test ptw --snapshot-update --now . -- -vv $(TEST_FILE)

View File

@ -24,7 +24,8 @@ test tests:
TIKTOKEN_CACHE_DIR=tiktoken_cache uv run --group test pytest --disable-socket --allow-unix-socket $(TEST_FILE)
integration_test integration_tests:
uv run --group test --group test_integration pytest -n auto $(TEST_FILE)
uv run --group test --group test_integration pytest -n auto $(TEST_FILE) -k test_stream_time
# uv run python -m pytest tests/integration_tests/chat_models/test_base_standard.py::TestOpenAIStandard::test_stream_time
test_watch:
uv run --group test ptw --snapshot-update --now . -- -vv $(TEST_FILE)