How to use the chore.interactive function in chore

To help you get started, we’ve selected a few chore examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github tsgates / mbox / src / sandbox.py View on Github external
# change directory
    if opts.cd:
        os.chdir(opts.cd)

    # sandbox container
    box = osbox.OS(parse_root(opts.root))
    if opts.no_sandbox:
        tracer.trace(interpose, args, tracer.dump_syscall)
    else:
        tracer.trace(interpose, args, box.run)
    box.done()
    
    # interactively committing back to host
    if opts.interact:
        chore.interactive(box)

    # check post condition when unit testing
    if opts.test:
        dbg.info("[!] checking %s" % args[0])
        if not chore.check_post(args[0], box.root):
            exit(1)

chore

Multi-scheduler job dispatcher

LGPL-3.0
Latest version published 2 years ago

Package Health Score

39 / 100
Full package analysis