[AIRFLOW-XXX] KubernetesPodOperator: fix _extract_xcom for larger json files#6797
Closed
ddelange wants to merge 17 commits intoapache:v1-10-testfrom
Closed
[AIRFLOW-XXX] KubernetesPodOperator: fix _extract_xcom for larger json files#6797ddelange wants to merge 17 commits intoapache:v1-10-testfrom
ddelange wants to merge 17 commits intoapache:v1-10-testfrom
Conversation
(cherry picked from commit 167fa33)
(cherry picked from commit ce873af)
…nfo (apache#6731) This case prevents a DAG from being scheduled so should be an error. (cherry picked from commit fb929eb)
(cherry picked from commit 15f08e1)
(cherry picked from commit 7686256)
(cherry picked from commit 70c2ba7)
…pache#6746) (cherry picked from commit d087925)
With this change you should be able to simply run `pytest` to run all the tests in the main airflow directory. This consist of two changes: * moving pytest.ini to the main airflow directory * skipping collecting kubernetes tests when ENV != kubernetes (cherry picked from commit 239d51e)
(cherry picked from commit 2784372)
(cherry picked from commit 0f21e9b)
Codecov Report
@@ Coverage Diff @@
## v1-10-test #6797 +/- ##
=============================================
Coverage ? 81.15%
=============================================
Files ? 519
Lines ? 35348
Branches ? 0
=============================================
Hits ? 28687
Misses ? 6661
Partials ? 0
Continue to review full report at Codecov.
|
…n files When calling update() and peek_stdout() immediately after write_stdin(), the cat command was sometimes not done yet with writing to stdin. Hence, an incomplete (and broken) json file was returned.
792ac95 to
b3a97ca
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When calling update() and peek_stdout() immediately after write_stdin(),
the cat command was sometimes not done yet with writing to stdin. Hence,
an incomplete (and broken) json file was returned.