Add build test for psutil

This commit is contained in:
Kovid Goyal 2014-05-10 11:02:33 +05:30
parent 279dd9bda3
commit bb4671c22b

View File

@ -169,6 +169,11 @@ def test_netifaces():
raise ValueError('netifaces could find no network interfaces') raise ValueError('netifaces could find no network interfaces')
print ('netifaces OK!') print ('netifaces OK!')
def test_psutil():
import psutil
psutil.Process(os.getpid())
print ('psutil OK!')
def test(): def test():
test_plugins() test_plugins()
test_lxml() test_lxml()
@ -185,6 +190,7 @@ def test():
test_magick() test_magick()
test_tokenizer() test_tokenizer()
test_netifaces() test_netifaces()
test_psutil()
if iswindows: if iswindows:
test_winutil() test_winutil()
test_wpd() test_wpd()