Skip to content

Commit

Permalink
tools: Fix repo path in list_testcases
Browse files Browse the repository at this point in the history
This was causing script to not being able to locate required imports.
  • Loading branch information
sjanc committed Jul 5, 2024
1 parent a559c41 commit 3bed848
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/list_testcases.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import os
from os.path import dirname, abspath

AUTOPTS_REPO = dirname(dirname(dirname(abspath(__file__))))
AUTOPTS_REPO = dirname(dirname(abspath(__file__)))
sys.path.insert(0, AUTOPTS_REPO)

from autopts.client import get_test_cases
Expand Down

0 comments on commit 3bed848

Please sign in to comment.