Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lupupaulsv/f3d537b26fc2fe664eb2f20891b00ffc to your computer and use it in GitHub Desktop.
Save lupupaulsv/f3d537b26fc2fe664eb2f20891b00ffc to your computer and use it in GitHub Desktop.
import boto3
import subprocess as subprocess
from subprocess import Popen, PIPE
def jmeter_staging():
args = [
'/bin/bash', '/home/paul.lupu/work/jmeter/reporting_sanity_check_staging.sh'
]
p = subprocess.Popen(args, stdin=PIPE, stdout=PIPE)
p.stdin.write("lala\n")
if __name__ == '__main__':
jmeter_staging()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment