Skip to content

Commit

Permalink
trigger build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
papa99do committed Jan 21, 2025
1 parent 00e321f commit 448b08b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/unit_test_200gb_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ jobs:
export PYTHONPATH="./tests:./src:."
set -o pipefail
pytest --ignore=tests/test_documentation.py --ignore=tests/compatibility_tests \
--durations=100 --cov=src --cov-branch --cov-context=test --cov-fail-under=70 \
--durations=100 --cov=src --cov-branch --cov-context=test --cov-fail-under=75 \
--cov-report=html:cov_html --cov-report=xml:cov.xml --cov-report term:skip-covered \
--md-report --md-report-flavor gfm --md-report-output pytest_result_summary.md \
tests | tee pytest_output.txt
Expand Down
4 changes: 4 additions & 0 deletions src/marqo/tensor_search/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,5 +608,9 @@ def liveness_check(marqo_config: config.Config = Depends(get_config)) -> JSONRes
return JSONResponse(content={"status": "ok"}, status_code=200)


def dummy_method():
print('to trigger new code test coverage failure')


if __name__ == "__main__":
uvicorn.run(app, host="localhost", port=8882)

0 comments on commit 448b08b

Please sign in to comment.