Skip to content

Commit

Permalink
Skipping running system with Ray and Python3.6 (pickle problem).
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbywater committed Jan 31, 2020
1 parent fb2ccad commit badee5c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,3 @@ class TestPaxosSystemWithDjango(DjangoTestCase, test_paxos_system.TestPaxosSyste
@skip("Ray runner doesn't run with Django infrastructure, yet")
def test_ray_performance(self):
pass

Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from unittest import skip
import sys
from unittest import skip, skipIf

from eventsourcing.tests.sequenced_item_tests.test_popo_record_manager import (
PopoTestCase,
Expand All @@ -17,3 +18,10 @@ def test_multiprocessing_performance(self):
@skip("Popo doesn't do multiprocessing")
def test_multiprocessing(self):
pass

@skipIf(
sys.version_info[:2] == (3, 6),
"RayRunner not working with Python36 (pickle issue)"
)
def test_ray_performance(self):
pass

0 comments on commit badee5c

Please sign in to comment.