Prerequisites check moved to the module level to simplify class structure. Discovery and prerequisites checks functions moved to the separate files. Introduced "require" fixture to provide per-test requirements check.
18 lines
380 B
Python
18 lines
380 B
Python
import os
|
|
import subprocess
|
|
|
|
from unit.option import option
|
|
|
|
|
|
def check_node():
|
|
if not os.path.exists(f'{option.current_dir}/node/node_modules'):
|
|
return False
|
|
|
|
try:
|
|
v_bytes = subprocess.check_output(['/usr/bin/env', 'node', '-v'])
|
|
|
|
return [str(v_bytes, 'utf-8').lstrip('v').rstrip()]
|
|
|
|
except subprocess.CalledProcessError:
|
|
return False
|