cover test process
This commit is contained in:
parent
f605a85aa4
commit
9439a8f145
|
@ -3,7 +3,10 @@
|
|||
import os
|
||||
import random
|
||||
|
||||
from pyelliptic.openssl import OpenSSL
|
||||
try:
|
||||
from pyelliptic.openssl import OpenSSL
|
||||
except ModuleNotFoundError:
|
||||
from .pyelliptic.openssl import OpenSSL
|
||||
|
||||
NoneType = type(None)
|
||||
|
||||
|
|
|
@ -11,6 +11,9 @@ import time
|
|||
import unittest
|
||||
import psutil
|
||||
from .common import cleanup, put_signal_file
|
||||
from .common import cleanup, put_signal_file, skip_python3
|
||||
|
||||
skip_python3()
|
||||
|
||||
|
||||
class TestProcessProto(unittest.TestCase):
|
||||
|
|
Reference in New Issue
Block a user