mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-13 02:30:11 +01:00
stick to default python sys.path
This commit is contained in:
parent
3a3803ea2d
commit
b257a3411a
@ -91,7 +91,6 @@ def find_plugins():
|
||||
|
||||
|
||||
def main():
|
||||
sys.path.append(os.getcwd())
|
||||
fdroid_modules = find_plugins()
|
||||
|
||||
if len(sys.argv) <= 1:
|
||||
|
@ -84,10 +84,13 @@ class MainTest(unittest.TestCase):
|
||||
f.write(textwrap.dedent("""\
|
||||
fdroid_summary = "ttt"
|
||||
main = lambda: pritn('all good')"""))
|
||||
with mock.patch('sys.argv', ['', 'testy']):
|
||||
with mock.patch('sys.exit') as exit_mock:
|
||||
fdroidserver.__main__.main()
|
||||
exit_mock.assert_called_once_with(0)
|
||||
test_path = sys.path.copy()
|
||||
test_path.append(tmpdir)
|
||||
with mock.patch('sys.path', test_path):
|
||||
with mock.patch('sys.argv', ['', 'testy']):
|
||||
with mock.patch('sys.exit') as exit_mock:
|
||||
fdroidserver.__main__.main()
|
||||
exit_mock.assert_called_once_with(0)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
Loading…
Reference in New Issue
Block a user