Comparar commits

...

2 Commits

Se han modificado 2 ficheros con 3 adiciones y 2 borrados

3
.gitignore vendido
Ver fichero

@ -2,7 +2,8 @@ aether
aether.pub
aether.tar.gz
nodeslist
*.tar.xz
*.tar.zst
pkg/
src/
venv/
**/__pycache__

Ver fichero

@ -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