forked from aws/sagemaker-distribution
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: Add jupyter-idle extension (aws#453)
Co-authored-by: Clayton Parnell <[email protected]>
- Loading branch information
1 parent
497d59f
commit 99db206
Showing
4 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#Add any additional packages here | ||
conda-forge::mlflow[version='>=2.13.2,<3.0'] | ||
conda-forge::sagemaker-mlflow[version='>=0.1.0,<1.0'] | ||
conda-forge::jupyter-activity-monitor-extension[version'>=0.1.0,<1.0'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#Add any additional packages here | ||
conda-forge::mlflow[version='>=2.13.2,<3.0'] | ||
conda-forge::sagemaker-mlflow[version='>=0.1.0,<1.0'] | ||
conda-forge::jupyter-activity-monitor-extension[version'>=0.1.0,<1.0'] |
8 changes: 8 additions & 0 deletions
8
test/test_artifacts/v2/jupyter-activity-monitor-extension.test.Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
ARG SAGEMAKER_DISTRIBUTION_IMAGE | ||
FROM $SAGEMAKER_DISTRIBUTION_IMAGE | ||
|
||
ARG MAMBA_DOCKERFILE_ACTIVATE=1 | ||
RUN micromamba install pytest --freeze-installed --yes --channel conda-forge --name base | ||
RUN micromamba install pytest-jupyter --freeze-installed --yes --channel conda-forge --name base | ||
RUN SITE_PACKAGES=$(pip show jupyter-activity-monitor-extension | grep Location | awk '{print $2}') && \ | ||
cd "$SITE_PACKAGES/jupyter_activity_monitor_extension/tests/" && pytest -p pytest_jupyter.jupyter_server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters