diff options
-rw-r--r-- | meta/lib/oeqa/selftest/cases/signing.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/signing.py b/meta/lib/oeqa/selftest/cases/signing.py index edb5f653f2..b3d1a8292e 100644 --- a/meta/lib/oeqa/selftest/cases/signing.py +++ b/meta/lib/oeqa/selftest/cases/signing.py | |||
@@ -22,14 +22,17 @@ class Signing(OESelftestTestCase): | |||
22 | if not shutil.which("gpg"): | 22 | if not shutil.which("gpg"): |
23 | raise AssertionError("This test needs GnuPG") | 23 | raise AssertionError("This test needs GnuPG") |
24 | 24 | ||
25 | cls.gpg_home_dir = tempfile.TemporaryDirectory(prefix="oeqa-signing-") | 25 | cls.gpg_dir = tempfile.mkdtemp(prefix="oeqa-signing-") |
26 | cls.gpg_dir = cls.gpg_home_dir.name | ||
27 | 26 | ||
28 | cls.pub_key_path = os.path.join(cls.testlayer_path, 'files', 'signing', "key.pub") | 27 | cls.pub_key_path = os.path.join(cls.testlayer_path, 'files', 'signing', "key.pub") |
29 | cls.secret_key_path = os.path.join(cls.testlayer_path, 'files', 'signing', "key.secret") | 28 | cls.secret_key_path = os.path.join(cls.testlayer_path, 'files', 'signing', "key.secret") |
30 | 29 | ||
31 | runCmd('gpg --batch --homedir %s --import %s %s' % (cls.gpg_dir, cls.pub_key_path, cls.secret_key_path)) | 30 | runCmd('gpg --batch --homedir %s --import %s %s' % (cls.gpg_dir, cls.pub_key_path, cls.secret_key_path)) |
32 | 31 | ||
32 | @classmethod | ||
33 | def tearDownClass(cls): | ||
34 | shutil.rmtree(cls.gpg_dir, ignore_errors=True) | ||
35 | |||
33 | @OETestID(1362) | 36 | @OETestID(1362) |
34 | def test_signing_packages(self): | 37 | def test_signing_packages(self): |
35 | """ | 38 | """ |