mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
11 lines
237 B
Python
11 lines
237 B
Python
"""tests for the 'fabric' package (v1.x)
|
|
|
|
See http://docs.fabfile.org/en/1.14/tutorial.html
|
|
"""
|
|
|
|
from fabric.api import run, local, sudo
|
|
|
|
local('echo local execution')
|
|
run('echo remote execution')
|
|
sudo('echo remote execution with sudo')
|