Codebase list logbook / 231b5e59-0504-48e5-889c-bbe31bc20259/main scripts / test_setup.py
231b5e59-0504-48e5-889c-bbe31bc20259/main

Tree @231b5e59-0504-48e5-889c-bbe31bc20259/main (Download .tar.gz)

test_setup.py @231b5e59-0504-48e5-889c-bbe31bc20259/main

9af17e1
9949c7f
9af17e1
 
 
c2895a0
9af17e1
 
c2895a0
d8b6d32
9af17e1
 
ffdbf14
9af17e1
 
 
9949c7f
fea2298
#! /usr/bin/python
from pip._internal import main as pip_main
import sys

if __name__ == '__main__':
    python_version = sys.version_info

    deps = [
        "execnet>=1.0.9",
        "pytest",
        "pyzmq",
        "sqlalchemy",
        "Jinja2",
    ]

    print("Setting up dependencies...")
    result = pip_main(["install"] + deps)
    sys.exit(result)