From ba31be3addce8dc7c3312c030d8680bc2127df6e Mon Sep 17 00:00:00 2001 From: Bryan Crossman Date: Mon, 21 Oct 2024 19:10:52 +0000 Subject: [PATCH] Fix path issue for BERT test --- run_bert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_bert.py b/run_bert.py index cc01841..4f8469e 100755 --- a/run_bert.py +++ b/run_bert.py @@ -31,7 +31,7 @@ class BERT(Test): def __init__(self, conn, board_sn=-1, tester='', module=None, clock=True): self.info_dict = {'name': "Bit Error Rate Test", 'board_sn': board_sn, 'tester': tester} self.conn = conn - self.output = Path(__file__).parent / "BERT.csv" + self.output = Path().home() / "BERT.csv" Test.__init__(self, self.bert, self.info_dict, conn, output=self.output, iskip=5, nbits=1e8, module=module, clock=clock) def bert(self, **kwargs):