Skip to content

Commit acad503

Browse files
TRNWWZRuinong Tian
and
Ruinong Tian
authored
Fix unit tests (#573)
Co-authored-by: Ruinong Tian <[email protected]>
1 parent bbf491a commit acad503

4 files changed

+5
-3
lines changed

test/test_artifacts/v1/altair.test.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM $SAGEMAKER_DISTRIBUTION_IMAGE
33

44
ARG MAMBA_DOCKERFILE_ACTIVATE=1
55

6-
CMD ["python", "-c", "import altair"]
6+
RUN ["python", "-c", "import altair"]
77

88
RUN sudo apt-get update && \
99
sudo apt-get install -y git && \

test/test_artifacts/v1/sm-python-sdk.test.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM $SAGEMAKER_DISTRIBUTION_IMAGE
44
ARG MAMBA_DOCKERFILE_ACTIVATE=1
55
RUN git clone --recursive https://github.com/aws/sagemaker-python-sdk.git
66

7-
RUN micromamba install -y -c conda-forge pytest
7+
RUN micromamba install -y --freeze-installed -c conda-forge pytest mock stopit awslogs
88

99
WORKDIR "sagemaker-python-sdk"
1010
COPY --chown=$MAMBA_USER:$MAMBA_USER scripts/run_pysdk_tests.sh .

test/test_artifacts/v2/altair.test.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM $SAGEMAKER_DISTRIBUTION_IMAGE
33

44
ARG MAMBA_DOCKERFILE_ACTIVATE=1
55

6-
CMD ["python", "-c", "import altair"]
6+
RUN ["python", "-c", "import altair"]
77

88
RUN sudo apt-get update && \
99
sudo apt-get install -y git && \

test/test_artifacts/v2/sm-python-sdk.test.Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ FROM $SAGEMAKER_DISTRIBUTION_IMAGE
44
ARG MAMBA_DOCKERFILE_ACTIVATE=1
55
RUN git clone --recursive https://github.com/aws/sagemaker-python-sdk.git
66

7+
RUN micromamba install -y --freeze-installed -c conda-forge pytest mock stopit awslogs
8+
79
# Sagemaker Python SDK's unit tests requires AWS_DEFAULT_REGION to be set. So, using an arbitrary value of us-east-1
810
ENV AWS_DEFAULT_REGION=us-east-1
911
WORKDIR "sagemaker-python-sdk"

0 commit comments

Comments
 (0)