summaryrefslogtreecommitdiffhomepage
path: root/test/unit/check/node.py
blob: dd59e7a45fcf707cdc575b5bfadc6ca15cc1760d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import os
import subprocess


def check_node(current_dir):
    if not os.path.exists(f'{current_dir}/node/node_modules'):
        return None

    try:
        v_bytes = subprocess.check_output(['/usr/bin/env', 'node', '-v'])

        return [str(v_bytes, 'utf-8').lstrip('v').rstrip()]

    except subprocess.CalledProcessError:
        return None