unit-tests: Fix include path to deal with new directory layout.

Add 'logs/README.md' to create that dir so logs automatically
have a place to be written to.

Signed-off-by: Ben Greear <greearb@candelatech.com>
This commit is contained in:
Ben Greear
2021-02-02 15:26:03 -08:00
parent 4bdf061d24
commit 0a6b354f05
6 changed files with 32 additions and 3 deletions

View File

@@ -3,6 +3,10 @@
# Example command line:
#./query_ap.py --testrail-user-id NONE --model ecw5410 --ap-jumphost-address localhost --ap-jumphost-port 8803 --ap-jumphost-password pumpkin77 --ap-jumphost-tty /dev/ttyAP1 --cmd "ifconfig -a"
import sys
sys.path.append(f'../tests')
from UnitTestBase import *
parser = argparse.ArgumentParser(description="Query AP", add_help=False)