From 0096ec89d2eaa1e6c5a8f3ebabe7ce693557281c Mon Sep 17 00:00:00 2001 From: DarkFeather Date: Tue, 10 Oct 2023 12:21:29 -0500 Subject: [PATCH] Better tracking of packaging format; update test case to not have the distributed private be present in the repo directory --- .gitignore | 2 +- tests/test_units.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3539ebc..ba48672 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,7 @@ aether aether.pub aether.tar.gz nodeslist -*.tar.xz +*.tar.zst pkg/ src/ **/__pycache__ diff --git a/tests/test_units.py b/tests/test_units.py index 7aad671..0631e0f 100644 --- a/tests/test_units.py +++ b/tests/test_units.py @@ -5,7 +5,7 @@ import subprocess # TODO Still need to devise a testing strategy (https://foundation.aninix.net/AniNIX/Aether/issues/1) def test_aether(): print(os.getcwd()) - fh = os.popen("echo bye | timeout 3 sftp -o IdentityFile=./aether aether@aninix.net", mode='r', buffering=-1) + fh = os.popen("echo bye | timeout 3 sudo sftp -o IdentityFile=/home/aether/.ssh/aether aether@aninix.net", mode='r', buffering=-1) output = fh.read() retcode = fh.close() assert retcode == None