Skip to content

Commit e093c40

Browse files
committed
Add Vyper rename as a test option as well.
1 parent 4241776 commit e093c40

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ethereum/tools/tester.py

+6
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@
4949
except (ImportError, TypeError):
5050
pass
5151

52+
try:
53+
from vyper import compiler
54+
languages['vyper'] = compiler
55+
except (ImportError, TypeError):
56+
pass
57+
5258

5359
class TransactionFailed(Exception):
5460
pass

0 commit comments

Comments
 (0)