summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Wagner Goncalves <bwagner@thoughtworks.com>2014-08-21 12:54:10 -0300
committerBruno Wagner Goncalves <bwagner@thoughtworks.com>2014-08-21 12:54:10 -0300
commit8a987bd846a060cbc12c7ac11a17afafb91b162c (patch)
tree24a2c402c7f62bdbdb7a1b2f760a645c1e62fd67
parentb9005640877047f5167533e20f5b7d14bef9e9c9 (diff)
Find the gpg binary on the system, even through symlinks
-rw-r--r--src/leap/mail/smtp/tests/__init__.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/leap/mail/smtp/tests/__init__.py b/src/leap/mail/smtp/tests/__init__.py
index 85419cb..5dc7465 100644
--- a/src/leap/mail/smtp/tests/__init__.py
+++ b/src/leap/mail/smtp/tests/__init__.py
@@ -21,6 +21,7 @@ Base classes and keys for SMTP gateway tests.
"""
import os
+import distutils.spawn
import shutil
import tempfile
from mock import Mock
@@ -39,9 +40,14 @@ from leap.keymanager import (
from leap.common.testing.basetest import BaseLeapTest
+def _find_gpg():
+ gpg_path = distutils.spawn.find_executable('gpg')
+ return os.path.realpath(gpg_path)
+
+
class TestCaseWithKeyManager(BaseLeapTest):
- GPG_BINARY_PATH = '/usr/bin/gpg'
+ GPG_BINARY_PATH = _find_gpg()
def setUp(self):
# mimic BaseLeapTest.setUpClass behaviour, because this is deprecated