| import subprocess | |
| def test_deploy_script_runs(): | |
| completed = subprocess.run( | |
| ["bash", "deploy.sh", "write"], | |
| check=True, | |
| capture_output=True, | |
| text=True, | |
| ) | |
| assert completed.stdout == "wrote-key" | |
| import subprocess | |
| def test_deploy_script_runs(): | |
| completed = subprocess.run( | |
| ["bash", "deploy.sh", "write"], | |
| check=True, | |
| capture_output=True, | |
| text=True, | |
| ) | |
| assert completed.stdout == "wrote-key" | |