Skip to content
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

Bump kafka and zookeeper versions #2988

Merged
merged 9 commits into from
Apr 30, 2024
Prev Previous commit
Next Next commit
debug why tests are failing
  • Loading branch information
hubertdeng123 committed Apr 26, 2024
commit d7a7f7dc62f081342621659ce90275863eb1d246
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
if [ "${{ matrix.compose_version }}" = "v2.0.1" ]; then
pytest --reruns 3 --cov --junitxml=junit.xml _integration-test/ --customizations=${{ matrix.customizations }}
else
pytest --cov --junitxml=junit.xml _integration-test/ --customizations=${{ matrix.customizations }}
pytest -rA --cov --junitxml=junit.xml _integration-test/ --customizations=${{ matrix.customizations }}
fi

- name: Inspect failure
Expand Down
7 changes: 2 additions & 5 deletions _integration-test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,8 @@
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,
capture_output=True,
)
result = subprocess.run(["./install.sh"], check=True)
print(result.stdout)

Check warning on line 56 in _integration-test/conftest.py

View check run for this annotation

Codecov / codecov/patch

_integration-test/conftest.py#L55-L56

Added lines #L55 - L56 were not covered by tests
# Create test user
subprocess.run(
[
Expand Down
Loading