Skip to content

Commit

Permalink
Adding debugging back, increasing timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
lotif committed Nov 27, 2024
1 parent 7fe1e2d commit b58cfab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Run integration tests
run: |
source .venv/bin/activate
pytest florist/tests/integration
coverage run -m pytest -s -vv florist/tests/integration
coverage xml
coverage report -m
- name: Upload python coverage to Codecov
Expand Down
4 changes: 2 additions & 2 deletions florist/tests/integration/api/test_train.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ async def test_train():
host="localhost",
port=8000,
log_level="debug",
timeout_graceful_shutdown=60,
timeout_graceful_shutdown=120,
)
server_service = TestUvicornServer(config=server_config)
client_config = uvicorn.Config(
"florist.api.client:app",
host="localhost",
port=8001,
log_level="debug",
timeout_graceful_shutdown=60,
timeout_graceful_shutdown=120,
)
client_service = TestUvicornServer(config=client_config)

Expand Down

0 comments on commit b58cfab

Please sign in to comment.