Skip to content

Commit

Permalink
Fix ncsim logic
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardt committed Nov 18, 2023
1 parent b02a39e commit 233022b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_property.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

def requires_ncsim(test_fn):
def wrapper(test_fn, *args, **kwargs):
# if not shutil.which("ncsim"):
# return pytest.skip("need ncsim for SVA test")
if not shutil.which("ncsim"):
return pytest.skip("need ncsim for SVA test")
return test_fn(*args, **kwargs)
return decorator.decorator(wrapper, test_fn)

Expand Down

0 comments on commit 233022b

Please sign in to comment.