Skip to content

Commit

Permalink
add ssh-wrapper (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
l8556 authored Apr 10, 2024
1 parent 9ec96a0 commit 8d3a3cb
Show file tree
Hide file tree
Showing 8 changed files with 93 additions and 211 deletions.
Empty file removed frameworks/ssh_client/__init__.py
Empty file.
6 changes: 0 additions & 6 deletions frameworks/ssh_client/data.py

This file was deleted.

165 changes: 0 additions & 165 deletions frameworks/ssh_client/ssh_client.py

This file was deleted.

25 changes: 22 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ elevate = "^0.1.3"
host-tools = { git = "https://github.com/l8556/host_tools.git", branch = "master" }
telegram = { git = "https://github.com/l8556/TelegramApi.git", branch = "master" }
VBoxWrapper = { git = "https://github.com/l8556/VBoxWrapper.git", branch = "master" }
ssh-wrapper = { git = "https://github.com/l8556/SshWrapper.git", branch = "master" }


[build-system]
Expand Down
4 changes: 2 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from VBoxWrapper import VirtualMachine, Vbox
from tests.data import TestData
from tests.desktop_tests import DesktopTests
from tests.desktop_tests import DesktopTest
import tests.multiprocessing as multiprocess
from frameworks.console import MyConsole
from tests.tools.desktop_report import DesktopReport
Expand Down Expand Up @@ -45,7 +45,7 @@ def desktop_test(
multiprocess.run(data, num_processes, 10, headless)
else:
for vm in Vbox().check_vm_names([name] if name else data.vm_names):
DesktopTests(vm, data).run(headless=headless)
DesktopTest(vm, data).run(headless=headless)

report = DesktopReport(report_path=data.report_path)
report.get_full(data.version)
Expand Down
Loading

0 comments on commit 8d3a3cb

Please sign in to comment.