Skip to content

Commit

Permalink
fix pypy
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixSchwarz committed Jul 18, 2024
1 parent 815dd4c commit 2630172
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/queue_runner_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

from datetime import datetime as DateTime, timedelta as TimeDelta
import os
import sys

from boltons.timeutils import UTC
import pytest
Expand All @@ -27,6 +28,8 @@ def path_maildir(tmpdir):
return _path_maildir


@pytest.skipIf(sys.implementation.name == 'pypy', reason='"time-machine" does not work on PyPy')
# https://github.com/adamchainz/time-machine/issues/305
def test_can_move_stale_messages_back_to_new(path_maildir):
mailer = DebugMailer()
inject_example_message(path_maildir, target_folder='cur')
Expand Down

0 comments on commit 2630172

Please sign in to comment.