cover test process

This commit is contained in:
Muzahid 2021-06-21 20:47:09 +05:30
parent f605a85aa4
commit 9439a8f145
Signed by untrusted user: cis-muzahid
GPG Key ID: 1DC85E7D3AB613EA
2 changed files with 7 additions and 1 deletions

View File

@ -3,7 +3,10 @@
import os
import random
try:
from pyelliptic.openssl import OpenSSL
except ModuleNotFoundError:
from .pyelliptic.openssl import OpenSSL
NoneType = type(None)

View File

@ -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):