Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
relf committed Nov 24, 2023
1 parent 20fd62b commit 835bbe3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion smt/applications/tests/test_ego.py
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,10 @@ def test_qei_criterion_default(self):
actual = float(ego._get_virtual_point(xtest, fun(xtest))[0])
self.assertAlmostEqual(expected, actual)

@unittest.skipIf(int(os.getenv("RUN_SLOW", 0)) < 2 or NO_MATPLOTLIB, "too slow or matplotlib not installed")
@unittest.skipIf(
int(os.getenv("RUN_SLOW", 0)) < 2 or NO_MATPLOTLIB,
"too slow or matplotlib not installed",
)
def test_examples(self):
self.run_ego_example()
self.run_ego_parallel_example()
Expand Down

0 comments on commit 835bbe3

Please sign in to comment.