Skip to content

Commit

Permalink
ci: reenable skipped test on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lsorber committed Apr 1, 2024
1 parent 5a607d7 commit e63a305
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/test_coherent_linear_quantile_regressor.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
"""Test the Coherent Linear Quantile Regressor."""

import os

import numpy as np
import pytest
from sklearn.utils.estimator_checks import check_estimator

from conformal_tights._coherent_linear_quantile_regressor import CoherentLinearQuantileRegressor


@pytest.mark.skipif(os.getenv("CI") == "true", reason="Skip on GitHub Actions")
def test_sklearn_check_estimator() -> None:
"""Check that the meta-estimator conforms to sklearn's standards."""
model = CoherentLinearQuantileRegressor(quantiles=np.array([0.5]))
Expand Down

0 comments on commit e63a305

Please sign in to comment.