passing python unit tests

This commit is contained in:
Thomas Ferreira de Lima 2018-10-19 19:02:38 -04:00
parent 87a49007ff
commit c3ab951c8a
No known key found for this signature in database
GPG Key ID: 43E98870EAA0A86E
4 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,6 @@
import klayout.dbcore
from klayout.dbcore import *
from klayout.db.pcell_declaration_helper import PCellDeclarationHelper
__all__ = klayout.dbcore.__all__ + ['PCellDeclarationHelper']

View File

@ -276,5 +276,3 @@ for k in dir(PCellParameterDeclaration):
# Inject the PCellDeclarationHelper into pya module for consistency:
PCellDeclarationHelper = _PCellDeclarationHelper
__all__ = ['PCellDeclarationHelper']

View File

@ -1 +1,4 @@
import klayout.rdbcore
from klayout.rdbcore import *
__all__ = klayout.rdbcore.__all__

View File

@ -1 +1,4 @@
import klayout.tlcore
from klayout.tlcore import *
__all__ = klayout.tlcore.__all__