Skip to content

Commit

Permalink
✅ Relax performance tests limits
Browse files Browse the repository at this point in the history
  • Loading branch information
pajowu committed May 23, 2023
1 parent dade848 commit 9704d73
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/tests/test_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ def document_list(logged_in_client: TestClient):
@pytest.mark.parametrize(
"test_function,setup_function,N,max_time",
[
(create_doc, None, 50, 0.01),
(user_me, None, 50, 0.005),
(document_list, create_doc, 50, 0.01),
(create_doc, None, 50, 0.1),
(user_me, None, 50, 0.05),
(document_list, create_doc, 50, 0.1),
],
)
def test_execution_speed(
Expand Down

0 comments on commit 9704d73

Please sign in to comment.