summaryrefslogtreecommitdiffhomepage
path: root/test/unit/check/node.py
blob: e053a749d0dfb398063709cf1b137bd168da13ef (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(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