diff --git a/src/calibre/test_build.py b/src/calibre/test_build.py index bdf5023350..b542fc3174 100644 --- a/src/calibre/test_build.py +++ b/src/calibre/test_build.py @@ -169,6 +169,11 @@ def test_netifaces(): raise ValueError('netifaces could find no network interfaces') print ('netifaces OK!') +def test_psutil(): + import psutil + psutil.Process(os.getpid()) + print ('psutil OK!') + def test(): test_plugins() test_lxml() @@ -185,6 +190,7 @@ def test(): test_magick() test_tokenizer() test_netifaces() + test_psutil() if iswindows: test_winutil() test_wpd()