HitchRunPy is a tool to run, test and profile snippets of python code.
HitchRunPy was developed to run executable specifications using HitchStory that define Python APIs.
As such it can be used with HitchStory to build effective replacements for unit tests and integration tests where the 'spec' is a python API.
HitchRunPy is used to run the executable specifications for all libraries on HitchDev.
from hitchrunpy import ExamplePythonCode
ExamplePythonCode(
'/path/to/bin/python',
'/path/to/working_directory',
).with_code((
'with open("examplefile", "w") as handle:'
' handle.write("exampletext")'
)).run()
$ pip install hitchstory
- CProfile
- Run with environment variables
- Exceptions
- Include files
- Interact with running code
- Setup code
- Error occurred
- Timeout
- Use modules
HitchRunPy combined with HitchStory serves as an effective replacement for unit tests in the situation where unit tests are most effective.