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 bde9e1e commit 469b0baCopy full SHA for 469b0ba
test/test_data/test_competition_c_functions.py
@@ -3,8 +3,14 @@
3
import os
4
import unittest
5
6
-
7
-import autosklearn.data.competition_c_functions as competition_c_functions
+try:
+ import autosklearn.data.competition_c_functions as competition_c_functions
8
+except ImportError:
9
+ try:
10
+ travis = os.environ['TRAVIS']
11
+ raise
12
+ except Exception:
13
+ pass
14
15
class CHelperFunctionTest(unittest.TestCase):
16
_multiprocess_can_split_ = True
0 commit comments