Skip to content

Commit

Permalink
Merge pull request #763 from jezdez/skip-heroku-macos
Browse files Browse the repository at this point in the history
Stop running some Heroku tests on macOS since it’s missing the appropriate signals
  • Loading branch information
selwin committed Nov 30, 2016
2 parents cfd3b50 + fcec17c commit 2428370
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
import time
from multiprocessing import Process
import subprocess
import sys

import pytest

import mock

Expand Down Expand Up @@ -748,6 +751,7 @@ def test_run_scheduled_access_self(self):
assert q.count == 0


@pytest.mark.skipif(sys.platform == 'darwin', reason='requires Linux signals')
class HerokuWorkerShutdownTestCase(TimeoutTestCase, RQTestCase):
def setUp(self):
super(HerokuWorkerShutdownTestCase, self).setUp()
Expand Down

0 comments on commit 2428370

Please sign in to comment.