rusoto_codegen 0.8.0

Code generation library for Rusoto.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python
import os
from subprocess import check_call

_dname = os.path.dirname

REPO_ROOT = _dname(_dname(_dname(os.path.abspath(__file__))))
os.chdir(os.path.join(REPO_ROOT, 'tests', 'acceptance'))


def run(command):
    return check_call(command, shell=True)


run('behave')