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
Fix build_conda_pkg #2323
Fix build_conda_pkg #2323
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2323 +/- ##
=======================================
- Coverage 99.9% 99.9% -0.0%
=======================================
Files 280 280
Lines 24490 24492 +2
=======================================
+ Hits 24463 24464 +1
- Misses 27 28 +1
Continue to review full report at Codecov.
|
def test_saving_png_file(tmpdir, test_pipeline): | ||
def test_saving_png_file(tmpdir, test_pipeline, is_using_conda): | ||
if is_using_conda: | ||
pytest.skip("Skipping saving_png_file if running during conda build process.") |
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.
This line will only be run during the build_conda_pkg
job. Since it's just pytest.skip
I think it's ok to merge.
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.
looks good! need a higher power (@dsherry) to either merge this in first or the latest dependency PR though.
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.
🙏
Is there a issue up to track removing this once we figure out the root cause?
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.
LGTM!
Pull Request Description
Disable broken test on gh-action build_conda_pkg job.
After creating the pull request: in order to pass the release_notes_updated check you will need to update the "Future Release" section of
docs/source/release_notes.rst
to include this pull request by adding :pr:123
.