Skip to content

Commit

Permalink
hardware_testbench: better message when skipping
Browse files Browse the repository at this point in the history
jordens committed Mar 10, 2016
1 parent f68c240 commit a618a6d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion artiq/test/hardware_testbench.py
Original file line number Diff line number Diff line change
@@ -107,7 +107,8 @@ def create(self, cls, **kwargs):
return exp
except KeyError as e:
# skip if ddb does not match requirements
raise unittest.SkipTest(*e.args)
raise unittest.SkipTest(
"device_db entry `{}` not found".format(*e.args))

def execute(self, cls, **kwargs):
expid = {

0 comments on commit a618a6d

Please sign in to comment.