diff --git a/.circleci/config.yml b/.circleci/config.yml index af2e5cda..7e17d6f0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -107,6 +107,8 @@ jobs: type: string steps: - checkout + - attach_workspace: + at: ./ - run: name: Install python command: | diff --git a/tests/unit/geometry_tests/test_utils.py b/tests/unit/geometry_tests/test_utils.py index bf98a97c..97522e31 100644 --- a/tests/unit/geometry_tests/test_utils.py +++ b/tests/unit/geometry_tests/test_utils.py @@ -6,7 +6,13 @@ import sys -def test_path(): +def tests_path(): + import specklepy_qt_ui + + assert True + + +def test_path1(): import speckle p = os.path.abspath(os.path.dirname(speckle.__file__))