Codebase list python-procrunner / 4957ab9d-255b-414f-8371-a19ff5369fa5/main docs / usage.rst
4957ab9d-255b-414f-8371-a19ff5369fa5/main

Tree @4957ab9d-255b-414f-8371-a19ff5369fa5/main (Download .tar.gz)

usage.rst @4957ab9d-255b-414f-8371-a19ff5369fa5/main

e00f039
 
 
 
 
 
 
cb70ecf
 
 
 
79d5885
 
cb70ecf
 
 
79d5885
 
cb70ecf
 
 
 
 
 
 
 
17bf3f1
 
 
 
=====
Usage
=====

To use ProcRunner in a project::

    import procrunner
    result = procrunner.run(['/bin/ls', '/some/path/containing spaces'])

To test for successful completion::

    assert not result['exitcode']
    assert result['exitcode'] == 0 # alternatively

To test for no STDERR output::

    assert not result['stderr']
    assert result['stderr'] == b'' # alternatively

To run with a specific environment variable set::

    result = procrunner.run(..., environment_override={ 'VARIABLE': 'value' })

To run with a specific environment::

    result = procrunner.run(..., environment={ 'VARIABLE': 'value' })

To run in a specific directory::

    result = procrunner.run(..., working_directory='/some/path')