Skip to content

Commit

Permalink
tests: sleep 2 seconds between tests
Browse files Browse the repository at this point in the history
  • Loading branch information
deedy5 committed Feb 16, 2025
1 parent 04fdd1c commit 06fd1ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

@pytest.fixture(autouse=True)
def pause_between_tests():
time.sleep(1)
time.sleep(2)


def test_version_command():
Expand Down
2 changes: 1 addition & 1 deletion tests/test_duckduckgo_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

@pytest.fixture(autouse=True)
def pause_between_tests():
time.sleep(1)
time.sleep(2)


def test_context_manager():
Expand Down

0 comments on commit 06fd1ea

Please sign in to comment.