Skip to content

Commit

Permalink
test_downstream_cli relax assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Jinye Zhang committed Apr 26, 2024
1 parent 13f76f6 commit 7e37b97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_CLI.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def test_downstream_cli():
df_res = pd.read_csv(res_path, sep="\t", index_col=0)
df_ref_res = pd.read_csv(ref_res_path, sep="\t", index_col=0)
print(df_res)
assert np.allclose(df_res.values, df_ref_res.values), "%s, %s" % (
assert np.allclose(df_res.values, df_ref_res.values, rtol=1e-03), "%s, %s" % (
prefix,
suffix,
)
Expand Down

0 comments on commit 7e37b97

Please sign in to comment.