Skip to content

Commit 967a3fb

Browse files
committed
mark spark run
1 parent 39da4c0 commit 967a3fb

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

nixtla_tests/nixtla_client/test_finetune_and_forecast.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ def test_ray_finetune_model(self, custom_client, ray_df):
118118
check_finetuned_model(custom_client, ray_df, model_ids_object.model_id2)
119119

120120
@pytest.mark.distributed_run
121+
@pytest.mark.spark_run
121122
def test_spark_finetune_model(self, custom_client, spark_df):
122123
check_finetuned_model(custom_client, spark_df, model_ids_object.model_id2)
123124

nixtla_tests/nixtla_client/test_spark.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
from nixtla_tests.helpers.checks import check_forecast_x_dataframe_diff_cols
1010
from nixtla_tests.helpers.checks import check_quantiles
1111

12-
pytestmark = pytest.mark.distributed_run
12+
pytestmark = [
13+
pytest.mark.distributed_run,
14+
pytest.mark.spark_run
15+
]
1316

1417
def test_quantiles(nixtla_test_client, spark_df):
1518
check_quantiles(nixtla_test_client, spark_df, id_col="unique_id", time_col="ds")

0 commit comments

Comments
 (0)