Skip to content

Commit

Permalink
[python] potential fix for gh-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hbaniecki committed May 22, 2024
1 parent f6b0bf7 commit cb48104
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions python/dalex/test/test_arena_classification.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import unittest
import sys

from plotly.graph_objs import Figure
from sklearn.compose import ColumnTransformer
Expand Down Expand Up @@ -59,6 +60,7 @@ def setUp(self):
FairnessCheckContainer, ShapleyValuesDependenceContainer, ShapleyValuesVariableImportanceContainer,
VariableAgainstAnotherContainer, VariableDistributionContainer]

@unittest.skipIf(sys.platform.startswith("win"), "requires Windows")
def test_supported_plots(self):
arena = dx.Arena()
arena.push_model(self.exp)
Expand All @@ -72,6 +74,7 @@ def test_supported_plots(self):
except Exception:
pass

@unittest.skipIf(sys.platform.startswith("win"), "requires Windows")
def test_server(self):
arena = dx.Arena()
arena.push_model(self.exp)
Expand All @@ -90,6 +93,7 @@ def test_server(self):
except Exception:
pass

@unittest.skipIf(sys.platform.startswith("win"), "requires Windows")
def test_plots(self):
arena = dx.Arena()
arena.push_model(self.exp)
Expand All @@ -106,6 +110,7 @@ def test_plots(self):
except Exception:
pass

@unittest.skipIf(sys.platform.startswith("win"), "requires Windows")
def test_observation_attributes(self):
arena = dx.Arena()
arena.push_model(self.exp)
Expand All @@ -123,6 +128,7 @@ def test_observation_attributes(self):
except Exception:
pass

@unittest.skipIf(sys.platform.startswith("win"), "requires Windows")
def test_variable_attributes(self):
arena = dx.Arena()
arena.push_model(self.exp)
Expand Down

0 comments on commit cb48104

Please sign in to comment.