Skip to content

Commit

Permalink
updated test-sqlite.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Vedant P Iyer committed Sep 5, 2024
1 parent 2621346 commit ad0084d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dsi/backends/tests/test_sqlite.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_wildfire_data_sql_artifact():
assert True

def test_wildfire_data_csv_artifact():
csvpath = '/'.join([get_git_root('.'), '/home/runner/work/dsi/examples/data/wildfiredata.csv'])
csvpath = '/'.join([get_git_root('.'), 'home/runner/work/dsi/examples/data/wildfiredata.csv'])
dbpath = "wildfire.db"
store = Sqlite(dbpath)
store.put_artifacts_csv(csvpath, "simulation", isVerbose=isVerbose)
Expand Down Expand Up @@ -60,7 +60,7 @@ def test_jsondata_artifact_put():
assert True

def test_yosemite_data_csv_artifact():
csvpath = '/'.join([get_git_root('.'), '/home/runner/work/dsi/examples/data/yosemite5.csv'])
csvpath = '/'.join([get_git_root('.'), 'home/runner/work/dsi/examples/data/yosemite5.csv'])
dbpath = "yosemite.db"
store = Sqlite(dbpath)
store.put_artifacts_csv(csvpath, "vision", isVerbose=isVerbose)
Expand All @@ -87,7 +87,7 @@ def test_artifact_query():

def test_yaml_reader():
reader = Sqlite("yaml-test.db")
reader.yamlToSqlite("/home/runner/work/dsi/examples/data/schema.yml", "yaml-test", deleteSql=False)
reader.yamlToSqlite("home/runner/work/dsi/examples/data/schema.yml", "yaml-test", deleteSql=False)
subprocess.run(["diff", "/home/runner/work/dsi/examples/data/compare-schema.sql", "yaml-test.sql"], stdout=open("compare_sql.txt", "w"))
file_size = os.path.getsize("compare_sql.txt")
os.remove("compare_sql.txt")
Expand All @@ -98,7 +98,7 @@ def test_yaml_reader():

def test_toml_reader():
reader = Sqlite("toml-test.db")
reader.tomlToSqlite("/home/runner/work/dsi/examples/data/schema.toml", "toml-test", deleteSql=False)
reader.tomlToSqlite("home/runner/work/dsi/examples/data/schema.toml", "toml-test", deleteSql=False)
subprocess.run(["diff", "/home/runner/work/dsi/examples/data/compare-schema.sql", "toml-test.sql"], stdout=open("compare_sql.txt", "w"))
file_size = os.path.getsize("compare_sql.txt")
os.remove("compare_sql.txt")
Expand Down

0 comments on commit ad0084d

Please sign in to comment.