Skip to content

Commit

Permalink
Tweak sleep time that works around #24
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Nov 12, 2024
1 parent 595452e commit b071740
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
python -m pip install -v -U -e ".${{ matrix.extras }}"
- name: Test
run: |
coverage run -m zope.testrunner -v --test-path=src --color --progress --slow-test=3
coverage run -m zope.testrunner -v --test-path=src --color --auto-progress --slow-test=3
coverage run -a -m sphinx -b doctest -d docs/_build/doctrees docs docs/_build/doctests
coverage combine || true
coverage report -i || true
Expand Down
2 changes: 1 addition & 1 deletion src/nti/mailer/tests/test_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def q():
# 0.5 seems to be enough. But for libev watchers on GHA,
# we need a full second. Do this ahead of time, non-blocking,
# so the stat watcher has a chance to get a before-time
gevent.sleep(0.5)
gevent.sleep(1.5)
self._queue_two_messages()


Expand Down

0 comments on commit b071740

Please sign in to comment.