Skip to content
Merged
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
5 changes: 3 additions & 2 deletions tests/test_samples.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import unittest

import khiops.core as kh
from khiops.core.internals.version import KhiopsVersion
from khiops.samples import samples, samples_sklearn
from tests.test_helper import KhiopsTestHelper

Expand All @@ -22,8 +23,8 @@ def test_samples(self):
"""Test if all samples run without problems"""
# Obtain the runner version and set the minimal requirements for some samples
min_version = {
samples.detect_data_table_format: kh.KhiopsVersion("10.0.1"),
samples.deploy_coclustering: kh.KhiopsVersion("10.0.1"),
samples.detect_data_table_format: KhiopsVersion("10.0.1"),
samples.deploy_coclustering: KhiopsVersion("10.0.1"),
}

# Run the samples
Expand Down