We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ebfb68 commit e531c2eCopy full SHA for e531c2e
tests/test_samples.py
@@ -8,6 +8,7 @@
8
import unittest
9
10
import khiops.core as kh
11
+from khiops.core.internals.version import KhiopsVersion
12
from khiops.samples import samples, samples_sklearn
13
from tests.test_helper import KhiopsTestHelper
14
@@ -22,8 +23,8 @@ def test_samples(self):
22
23
"""Test if all samples run without problems"""
24
# Obtain the runner version and set the minimal requirements for some samples
25
min_version = {
- samples.detect_data_table_format: kh.KhiopsVersion("10.0.1"),
26
- samples.deploy_coclustering: kh.KhiopsVersion("10.0.1"),
+ samples.detect_data_table_format: KhiopsVersion("10.0.1"),
27
+ samples.deploy_coclustering: KhiopsVersion("10.0.1"),
28
}
29
30
# Run the samples
0 commit comments