Skip to content

Upgrade MapR #20211

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
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
5 changes: 4 additions & 1 deletion mapr/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
# mapr-streams-python is required by the integration but is not shipped with the Agent;
# customers are expected to install the package themselves.
# We do that here for the e2e testing environment.
'apt-get clean',
'apt-get update',
'apt-get install -y gcc gnupg lsb-release',
"sh -c 'DEBIAN_FRONTEND=noninteractive dpkg --configure -a'",
"sh -c 'DEBIAN_FRONTEND=noninteractive apt-get install -f -y -o Dpkg::Options::=\"--force-confdef\" -o Dpkg::Options::=\"--force-confold\"'", # noqa: E501
"sh -c 'DEBIAN_FRONTEND=noninteractive apt-get install -y gcc gnupg lsb-release ca-certificates'",
# mapr-streams-python requires librdkafka headers as they're not shipped with the Agent
# This requires adding confluent's APT repositories. These steps are based on the docs in
# - https://docs.confluent.io/platform/current/installation/installing_cp/deb-ubuntu.html#get-the-software
Expand Down
Loading