Lee-W commented on code in PR #51511:
URL: https://github.com/apache/airflow/pull/51511#discussion_r2257122454
##########
airflow-core/tests/unit/dag_processing/test_collection.py:
##########
@@ -340,10 +345,7 @@ def dag_to_lazy_serdag(self, dag: DAG) ->
LazyDeserializedDAG:
ser_dict = SerializedDAG.to_dict(dag)
return LazyDeserializedDAG(data=ser_dict)
- @pytest.mark.skipif(
- condition="FabAuthManager" not in conf.get("core", "auth_manager"),
- reason="This is only for FabAuthManager",
- )
+ @mark_fab_auth_manager_test
Review Comment:
```python
@mock.patch.dict(
"os.environ",
{
"AIRFLOW_CONN_TEST_URI":
"postgresql://username:[email protected]:5432/the_database",
},
)
```
not sure whether something like this works
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]