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 badee5c commit 2aba0f3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import datetime
import os
import sys
import unittest
from time import sleep
from unittest import skipIf
from uuid import uuid4

from eventsourcing.application.sqlalchemy import SQLAlchemyApplication
Expand Down Expand Up @@ -182,6 +184,10 @@ def test_multiprocessing(self):
print("Resolved paxos 3 with multiprocessing in %ss" % duration3)

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

set_db_uri()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,3 @@ 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 2aba0f3

Please sign in to comment.