diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-05-02 20:59:50 +0200 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-05-02 20:59:50 +0200 |
| commit | f1fc315318a6855dde99cdbe8fc2babddaee22a1 (patch) | |
| tree | b66183b3fedb4f3580b1cfe0f24e7ae38fca2d53 | |
| parent | 93fd1e4c76b2eb3d219a8b146ae9e36b103ae5cf (diff) | |
[fix] robot test - kill the only subprocess
| -rw-r--r-- | searx/testing.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/searx/testing.py b/searx/testing.py index 51c44d826..e22ecf8fe 100644 --- a/searx/testing.py +++ b/searx/testing.py @@ -56,9 +56,7 @@ class SearxRobotLayer(Layer): ) def tearDown(self): - # send TERM signal to all processes in my group, to stop subprocesses - os.killpg(os.getpgid(self.server.pid), 15) - + os.kill(self.server.pid, 15) # remove previously set environment variable del os.environ['SEARX_SETTINGS_PATH'] |