Skip to content

Commit b69d653

Browse files
committed
test
1 parent 1157741 commit b69d653

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

mapr/tests/conftest.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,10 @@
1515
# customers are expected to install the package themselves.
1616
# We do that here for the e2e testing environment.
1717
'apt-get update',
18-
'sh -c "DEBIAN_FRONTEND=noninteractive dpkg --configure -a"',
19-
'sh -c "DEBIAN_FRONTEND=noninteractive apt-get install -f -y"',
20-
'sh -c "DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::=\\\"--force-confdef\\\" -o Dpkg::Options::=\\\"--force-confnew\\\" -y install libssl-dev"', # noqa: E501
21-
'sh -c "DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::=\\\"--force-confdef\\\" -o Dpkg::Options::=\\\"--force-confnew\\\" -y install gcc gnupg lsb-release ca-certificates"', # noqa: E501
22-
# 'apt-get install -y gcc gnupg lsb-release ca-certificates',
18+
'dpkg --configure -a',
19+
'apt-get install -f -y',
20+
'apt-get -o Dpkg::Options::=\\\"--force-confdef\\\" -o Dpkg::Options::=\\\"--force-confnew\\\" -y install libssl-dev', # noqa: E501
21+
'apt-get -o Dpkg::Options::=\\\"--force-confdef\\\" -o Dpkg::Options::=\\\"--force-confnew\\\" -y install gcc gnupg lsb-release ca-certificates', # noqa: E501
2322
# mapr-streams-python requires librdkafka headers as they're not shipped with the Agent
2423
# This requires adding confluent's APT repositories. These steps are based on the docs in
2524
# - https://docs.confluent.io/platform/current/installation/installing_cp/deb-ubuntu.html#get-the-software
@@ -34,8 +33,6 @@
3433
'apt-get install -y librdkafka-dev',
3534
# Finally, we can install the package
3635
'/opt/datadog-agent/embedded/bin/pip install mapr-streams-python',
37-
# 'sh -c "DEBIAN_FRONTEND=noninteractive dpkg --configure -a"',
38-
# 'sh -c "DEBIAN_FRONTEND=noninteractive apt-get install -f -y"',
3936
]
4037
}
4138

0 commit comments

Comments
 (0)