From c7b867f4a9661c36fca17d7ea27af87fbfd3b074 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Parodi=2C=20Eugenio=20=F0=9F=8C=B6?= Date: Wed, 29 Oct 2025 10:07:24 +0000 Subject: [PATCH] chore: fix sys path in pty tests --- tests/t.pty/test.pty.006.terminal.03.py | 2 +- tests/t.pty/test.pty.006.terminal.04.py | 2 +- tests/t.pty/test.pty.006.terminal.05.py | 2 +- tests/t.pty/test.pty.006.terminal.06.py | 2 +- tests/t.pty/test.pty.006.terminal.07.py | 2 +- tests/t.pty/test.pty.006.terminal.08.getBuffer.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/t.pty/test.pty.006.terminal.03.py b/tests/t.pty/test.pty.006.terminal.03.py index 63d7ce9c..beecc810 100755 --- a/tests/t.pty/test.pty.006.terminal.03.py +++ b/tests/t.pty/test.pty.006.terminal.03.py @@ -44,7 +44,7 @@ import threading import argparse from select import select -sys.path.append(os.path.join(sys.path[0],'../..')) +sys.path.append(os.path.join(sys.path[0],'../../libs/pyTermTk')) import TermTk as ttk parser = argparse.ArgumentParser() diff --git a/tests/t.pty/test.pty.006.terminal.04.py b/tests/t.pty/test.pty.006.terminal.04.py index 742e0442..1186163c 100755 --- a/tests/t.pty/test.pty.006.terminal.04.py +++ b/tests/t.pty/test.pty.006.terminal.04.py @@ -44,7 +44,7 @@ import threading import argparse from select import select -sys.path.append(os.path.join(sys.path[0],'../..')) +sys.path.append(os.path.join(sys.path[0],'../../libs/pyTermTk')) import TermTk as ttk parser = argparse.ArgumentParser() diff --git a/tests/t.pty/test.pty.006.terminal.05.py b/tests/t.pty/test.pty.006.terminal.05.py index b3a42fb7..1453fac1 100755 --- a/tests/t.pty/test.pty.006.terminal.05.py +++ b/tests/t.pty/test.pty.006.terminal.05.py @@ -25,7 +25,7 @@ import os, sys, argparse from select import select -sys.path.append(os.path.join(sys.path[0],'../..')) +sys.path.append(os.path.join(sys.path[0],'../../libs/pyTermTk')) import TermTk as ttk parser = argparse.ArgumentParser() diff --git a/tests/t.pty/test.pty.006.terminal.06.py b/tests/t.pty/test.pty.006.terminal.06.py index 1221a20f..e2000686 100755 --- a/tests/t.pty/test.pty.006.terminal.06.py +++ b/tests/t.pty/test.pty.006.terminal.06.py @@ -25,7 +25,7 @@ import os, sys, argparse from select import select -sys.path.append(os.path.join(sys.path[0],'../..')) +sys.path.append(os.path.join(sys.path[0],'../../libs/pyTermTk')) import TermTk as ttk parser = argparse.ArgumentParser() diff --git a/tests/t.pty/test.pty.006.terminal.07.py b/tests/t.pty/test.pty.006.terminal.07.py index b0bac594..359119c1 100755 --- a/tests/t.pty/test.pty.006.terminal.07.py +++ b/tests/t.pty/test.pty.006.terminal.07.py @@ -25,7 +25,7 @@ import os, sys, argparse from select import select -sys.path.append(os.path.join(sys.path[0],'../..')) +sys.path.append(os.path.join(sys.path[0],'../../libs/pyTermTk')) import TermTk as ttk parser = argparse.ArgumentParser() diff --git a/tests/t.pty/test.pty.006.terminal.08.getBuffer.py b/tests/t.pty/test.pty.006.terminal.08.getBuffer.py index efde2545..65ceac59 100755 --- a/tests/t.pty/test.pty.006.terminal.08.getBuffer.py +++ b/tests/t.pty/test.pty.006.terminal.08.getBuffer.py @@ -25,7 +25,7 @@ import os, sys, argparse from select import select -sys.path.append(os.path.join(sys.path[0],'../..')) +sys.path.append(os.path.join(sys.path[0],'../../libs/pyTermTk')) import TermTk as ttk parser = argparse.ArgumentParser()