Skip to content

Commit 6b31dce

Browse files
committed
Add "multiprocess" lib to setup.py "tests_require"
1 parent 55043a1 commit 6b31dce

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
],
3232
tests_require=[
3333
'pytest', 'pytest-mock', 'fakeredis', 'graphene', 'subprocess32',
34-
'flask', 'flask-graphql', 'flask-sockets'
34+
'flask', 'flask-graphql', 'flask-sockets', 'multiprocess'
3535
],
3636
include_package_data=True)

tests/test_subscription_transport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from functools import wraps
88
import copy
99
import json
10-
import multiprocess
1110
import os
1211
import sys
1312

@@ -18,6 +17,7 @@
1817
from promise import Promise
1918
import fakeredis
2019
import graphene
20+
import multiprocess
2121
import pytest
2222
import redis
2323

0 commit comments

Comments
 (0)