diff options
Diffstat (limited to 'tests/run-tests.py')
-rwxr-xr-x | tests/run-tests.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py index 0491ccb..f0ddb87 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -17,15 +17,11 @@ def start_mysql(): subprocess.run(['mysql', '-D', 'test-db', '-e', sql_data]) subprocess.run(['mysql', '-D', 'test-db', '-e', sql_create_user]) - return - def stop_mysql(): subprocess.run(['mysql', '-D', 'test-db', '-e', sql_delete_user]) subprocess.run(['mysqladmin', 'drop', '-f', 'test-db']) - return - if os.getuid() is not 0: print('You need to be root to run these tests :-)') exit() |