From 9a98f962554e272cad8d6ba8b4986a5f842689d2 Mon Sep 17 00:00:00 2001 From: Neil Wu Date: Mon, 28 Aug 2023 16:48:31 -0700 Subject: [PATCH] test nsga2 single-objective case on Windows --- tests/test_nsga2_multi_objective.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/test_nsga2_multi_objective.py b/tests/test_nsga2_multi_objective.py index 614ff187..f41e6405 100644 --- a/tests/test_nsga2_multi_objective.py +++ b/tests/test_nsga2_multi_objective.py @@ -1,7 +1,6 @@ """ Test NSGA2.""" # Standard Python modules -import sys import unittest # External modules @@ -50,9 +49,6 @@ def setup_optProb(self, n_obj): if n_obj == 2: self.optProb.addObj("obj2") - @unittest.skipIf( - sys.platform == "win32", "test_nsga2_multi_objective.py fails on windows with two objectives! Skipping for now." - ) @parameterized.expand([(1,), (2,)]) def test_opt(self, n_obj): if n_obj == 2: