Skip to content

Commit 94d29bd

Browse files
committed
install jupytercad metapackage for ui tests
1 parent a5c3ad6 commit 94d29bd

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ jobs:
8484
python/jupytercad_core/dist/jupytercad*
8585
python/jupytercad_lab/dist/jupytercad*
8686
python/jupytercad_app/dist/jupytercad*
87+
python/jupytercad/dist/jupytercad*
8788
if-no-files-found: error
8889

8990
test_isolated:
@@ -235,6 +236,7 @@ jobs:
235236
cp ./jupytercad_core/dist/jupytercad*.whl jupytercad_core-0.0.1-py3-none-any.whl
236237
cp ./jupytercad_lab/dist/jupytercad*.whl jupytercad_lab-0.0.1-py3-none-any.whl
237238
cp ./jupytercad_app/dist/jupytercad*.whl jupytercad_app-0.0.1-py3-none-any.whl
239+
cp ./jupytercad/dist/jupytercad*.whl jupytercad-0.0.1-py3-none-any.whl
238240
239241
- name: Build the lite site
240242
shell: bash -l {0}

python/jupytercad_core/jupytercad_core/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
warnings.warn("Importing 'jupytercad_core' outside a proper installation.")
1010
__version__ = "dev"
1111

12+
1213
def _jupyter_labextension_paths():
1314
return [{"src": "labextension", "dest": "@jupytercad/jupytercad-core"}]
1415

@@ -22,5 +23,6 @@ def _load_jupyter_server_extension(server_app):
2223
JupyterLab application instance
2324
"""
2425
from .handlers import setup_handlers
26+
2527
setup_handlers(server_app.web_app)
2628
server_app.log.info("Registered jupytercad server extension")

0 commit comments

Comments
 (0)