From bd046405e3bc80460d7168dc7fa4fe5eafc86fbd Mon Sep 17 00:00:00 2001 From: Thomas Ferreira de Lima Date: Mon, 16 Jul 2018 09:35:25 -0400 Subject: [PATCH] only importing tl, db and rdb for testing --- .travis.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2aa8c9fce..1c828bcbc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,7 @@ before_install: - eval "${MATRIX_EVAL}" - brew update - brew bundle + - env install: - python3 setup.py install @@ -16,8 +17,3 @@ script: - python3 -c 'import klayout.db as db; print(dir(db))' - python3 -c 'import klayout.rdb as rdb; print(dir(rdb))' - python3 -c 'import klayout.tl as tl; print(dir(tl))' - - python3 -c 'import klayout._db as db; print(dir(db))' - - python3 -c 'import klayout._rdb as rdb; print(dir(rdb))' - - python3 -c 'import klayout._tl as tl; print(dir(tl))' - - python3 -c 'import klayout._gsi as gsi; print(dir(gsi))' - - python3 -c 'import klayout._pya as pya; print(dir(pya))'