1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

test certauth: fix paths

This commit is contained in:
Ilya Kreymer 2015-01-11 13:10:14 -08:00
parent cf0a21509b
commit 7ae0ff86d2

View File

@ -5,8 +5,8 @@ import shutil
from pywb.framework.certauth import main, CertificateAuthority
TEST_CA_DIR = './pywb/framework/test/pywb_test_ca_certs'
TEST_CA_ROOT = './pywb/framework/test/pywb_test_ca.pem'
TEST_CA_DIR = os.path.join('.', 'pywb', 'framework', 'test', 'pywb_test_ca_certs')
TEST_CA_ROOT = os.path.join('.', 'pywb', 'framework', 'test', 'pywb_test_ca.pem')
def setup_module():
openssl_support = pytest.importorskip("OpenSSL")