mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 05:37:55 +00:00
b2c12b34fe
* Added Gsetup. Added Python tests for github actions. * Add python requirments for pytests #1238 Co-authored-by: Scott Fennell <spfennell@gmail.com>
6 lines
156 B
Python
6 lines
156 B
Python
import subprocess
|
|
|
|
def run(program):
|
|
print("Running:", program)
|
|
process = subprocess.run(program.split(" "), capture_output=True)
|
|
return process |