|
Server : Apache System : Linux ecngx264.inmotionhosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : lonias5 ( 3576) PHP Version : 7.3.33 Disable Function : NONE Directory : /usr/lib/imh-wpapi/tests/ |
Upload File : |
"""pytest fixtures"""
import os
import pytest
import rads
@pytest.fixture
def access_hash():
"""Read /root/.accesshash or raise IOError"""
with open('/root/.accesshash', encoding='utf-8') as hash_file:
hash_lines = hash_file.read().splitlines()
return ''.join(hash_lines)
@pytest.fixture
def username():
"""Get the cPanel user to run tests against"""
user = os.environ.get('cpuser', rads.SECURE_USER)
assert user
return user