Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions tests/test_core/test_api/test_stream_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
These tests verify:
1. mlodaAPI has a stream_run method that is callable
2. stream_run returns a generator (types.GeneratorType), not a list

All tests are expected to FAIL because:
- mlodaAPI does not have a stream_run method yet
"""

import types
Expand All @@ -14,6 +11,10 @@
from mloda.user import Feature, Features, ParallelizationMode, mlodaAPI
from mloda_plugins.compute_framework.base_implementations.pyarrow.table import PyArrowTable

# stream_run plans eagerly, so ``EngineRunnerTest1`` must be a loaded FeatureGroup subclass at call
# time. Import its defining module here rather than relying on another test package's conftest.
import tests.test_core.test_integration.test_core.test_runner_one_compute_framework # noqa: F401


class TestStreamRunImport:
"""Tests that stream_run exists as a callable method on mlodaAPI."""
Expand Down
Loading