-
Notifications
You must be signed in to change notification settings - Fork 36
fix the missing_values_barplot errors #963
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…n local hatch env
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
…olerance changed from 5 to 6
for more information, see https://pre-commit.ci
tests/plot/test_missingno_pl_api.py
Outdated
@pytest.mark.parametrize("layer", [None, "layer_2"]) | ||
def test_missing_values_barplot(mimic_2, check_same_image, layer): | ||
def test_missing_values_barplot(mimic_2, check_same_image, layer, clean_up_plots): | ||
plt.close("all") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We shouldn't need this here anymore, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let me try without it if it still passes I'll remove it
tests/plot/test_scanpy_pl_api.py
Outdated
|
||
def test_pca_overview(mimic_2_sample_serv_unit_day_icu, check_same_image): | ||
def test_pca_overview(mimic_2_sample_serv_unit_day_icu, check_same_image, clean_up_plots): | ||
plt.close("all") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we still need this?
…nd so trying to push again
fixes #961