diff options
-rwxr-xr-x | ogclient (renamed from main.py) | 0 | ||||
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | tests/units/client.py | 2 |
3 files changed, 2 insertions, 2 deletions
@@ -7,7 +7,7 @@ setup(name='ogclient', author_email='soporte-og@soleta.eu', url='https://github.com/opengnsys/ogClient', packages=['src', 'src.linux', 'src.virtual'], - scripts=['main.py'], + scripts=['ogclient'], data_files=[('cfg', ['cfg/ogclient.json']), ('', ['LICENSE'])] ) diff --git a/tests/units/client.py b/tests/units/client.py index 21cf21f..0b678dc 100644 --- a/tests/units/client.py +++ b/tests/units/client.py @@ -13,7 +13,7 @@ class Client(): def __init__(self): self.null = open(os.devnull, 'wb') - self.proc = subprocess.Popen(['python3', 'main.py'], + self.proc = subprocess.Popen(['python3', 'ogclient'], cwd='../', stdout=self.null, stderr=self.null) |