Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions tests/integ/sagemaker/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@

import base64
import os
import subprocess
import shutil
import pytest
import docker
import re
import shutil
import subprocess
import sys

import docker
import pytest
from docker.errors import BuildError

from sagemaker.utils import sagemaker_timestamp, _tmpdir, sts_regional_endpoint
from sagemaker.utils import _tmpdir, sagemaker_timestamp, sts_regional_endpoint

REPO_ACCOUNT_ID = "033110030271"

Expand Down Expand Up @@ -68,7 +68,7 @@
"RUN curl 'https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip' -o 'awscliv2.zip' \
&& unzip awscliv2.zip \
&& ./aws/install\n\n"
"RUN apt install sudo\n"
"RUN apt install -y sudo\n"
"RUN useradd -ms /bin/bash integ-test-user\n"
# Add the user to sudo group
"RUN usermod -aG sudo integ-test-user\n"
Expand Down
Loading