Skip to content

Commit

Permalink
#0: Fix relative link in export_to_sqlite.py (tenstorrent#14810)
Browse files Browse the repository at this point in the history
  • Loading branch information
eyonland authored and Christopher Taylor committed Nov 12, 2024
1 parent 654d277 commit 59f1b65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/sweep_framework/framework/export_to_sqlite.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def export_to_sqlite(sweeps_path, dump_path, filter_string, user, es_client):
args = parser.parse_args(sys.argv[1:])

ELASTIC_CONNECTION_STRING = get_elastic_url(args.elastic)
sweeps_path = pathlib.Path(__file__).parent / "sweeps"
sweeps_path = pathlib.Path(__file__).parent.parent / "sweeps"
es_client = Elasticsearch(ELASTIC_CONNECTION_STRING, basic_auth=(ELASTIC_USERNAME, ELASTIC_PASSWORD))
global VERBOSE
VERBOSE = args.verbose
Expand Down

0 comments on commit 59f1b65

Please sign in to comment.