Skip to content

Commit

Permalink
Fixed an interface error in test
Browse files Browse the repository at this point in the history
  • Loading branch information
fjwillemsen committed Oct 16, 2024
1 parent 1c9db4a commit 94995b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_hyper.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
from kernel_tuner.hyper import tune_hyper_params

from .test_runners import cache_filename, env # noqa: F401
from .context import skip_if_no_methodology
from .test_runners import cache_filename, env # noqa: F401


@skip_if_no_methodology
def test_hyper(env):
Expand All @@ -14,6 +15,5 @@ def test_hyper(env):

target_strategy = "genetic_algorithm"

result = tune_hyper_params(target_strategy, hyper_params, *env, verbose=True, cache=cache_filename)
result = tune_hyper_params(target_strategy, hyper_params, verbose=True, cache=cache_filename)
assert len(result) > 0

0 comments on commit 94995b4

Please sign in to comment.