We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
PI on pourrait mettre un test de non régression en qques lignes dans tests/ci/test_dags.py qui ferait:
tests/ci/test_dags.py
dags = DagBag() IMPORT_DAGS = [dag_id for dag_id in dags.dag_ids if dag_id.startswith("import_")] @pytest.mark.parametrize("dag_id", IMPORT _DAGS) def test_dag_import_sources(dag_id): dag = dags.get_dag(dag_id=dag_id) assert dag.task_dict.keys() == ["start", ..., "end"]
Quelque chose dans c egenre là ?
Originally posted by @vperron in #246 (review)
The text was updated successfully, but these errors were encountered:
vperron
No branches or pull requests
PI on pourrait mettre un test de non régression en qques lignes dans
tests/ci/test_dags.py
qui ferait:Quelque chose dans c egenre là ?
Originally posted by @vperron in #246 (review)
The text was updated successfully, but these errors were encountered: