Unverified Commit 06e22f1e authored by Da Zheng's avatar Da Zheng Committed by GitHub
Browse files

[Test] Disable unittest for shared memory temporarily (#497)

* disable tests.

* import unittest.
parent b89dcce1
......@@ -5,6 +5,7 @@ from multiprocessing import Process
from scipy import sparse as spsp
import mxnet as mx
import backend as F
import unittest
num_nodes = 100
num_edges = int(num_nodes * num_nodes * 0.1)
......@@ -48,6 +49,7 @@ def server_func(num_workers):
g.edata['feat'] = mx.nd.arange(num_edges * 10).reshape((num_edges, 10))
g.run()
@unittest.skip("disable shared memory test temporarily")
def test_worker_server():
serv_p = Process(target=server_func, args=(2,))
work_p1 = Process(target=worker_func, args=(0,))
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment