Skip to content

Commit

Permalink
Merge pull request #264 from cadCAD-org/multi_os
Browse files Browse the repository at this point in the history
correcting test path
  • Loading branch information
JEJodesty authored May 6, 2021
2 parents 41bf9b3 + ae3565d commit 13e5182
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion testing/tests/param_sweep.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
raw_result, _, _ = run.execute()
result_df = pd.DataFrame(raw_result)

expected_df = pd.read_pickle("./expected_results/param_sweep.pkl")

expected_df = pd.read_pickle("./testing/tests/expected_results/param_sweep.pkl")

result_diff = dataframe_difference(result_df, expected_df)
# result_diff = dataframe_difference(result_df, result_df)
Expand Down
2 changes: 1 addition & 1 deletion testing/tests/policy_aggregation.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
raw_result, _, _ = run.execute()
result_df = pd.DataFrame(raw_result)

expected_df = pd.read_pickle("./expected_results/policy_agg.pkl")
expected_df = pd.read_pickle("./testing/tests/expected_results/policy_agg.pkl")
result_diff = dataframe_difference(result_df, expected_df)
# result_diff = dataframe_difference(result_df, result_df)
print(tabulate(result_diff, headers='keys', tablefmt='psql'))
Expand Down

0 comments on commit 13e5182

Please sign in to comment.