Skip to content

Commit

Permalink
Fix master test failures (#3000)
Browse files Browse the repository at this point in the history
* fix for tests?

* fix tests on master
  • Loading branch information
hubertdeng123 committed Apr 26, 2024
1 parent 6c67717 commit 6f91da5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _integration-test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def configure_self_hosted_environment(request):
#!/bin/bash
touch /created-by-enhance-image
apt-get update
apt-get install -y gcc libsasl2-dev python-dev libldap2-dev libssl-dev
apt-get install -y gcc libsasl2-dev python-dev-is-python3 libldap2-dev libssl-dev
"""

with open("sentry/enhance-image.sh", "w") as script_file:
Expand All @@ -52,7 +52,7 @@ def configure_self_hosted_environment(request):
with open("sentry/requirements.txt", "w") as req_file:
req_file.write("python-ldap\n")
os.environ["MINIMIZE_DOWNTIME"] = "1"
subprocess.run(["./install.sh"], check=True)
subprocess.run(["./install.sh"], check=True, capture_output=True)
# Create test user
subprocess.run(
[
Expand Down

0 comments on commit 6f91da5

Please sign in to comment.