Taragolis commented on code in PR #28459:
URL: https://github.com/apache/airflow/pull/28459#discussion_r1054700534


##########
tests/always/test_project_structure.py:
##########
@@ -30,68 +30,79 @@
 )
 
 
-class TestProjectStructure(unittest.TestCase):
+class TestProjectStructure:

Review Comment:
   `test_providers_modules_should_have_tests` after changes by this PR shows 
this warning
   
   ```console
   Detect missing tests in providers module.
   
   Modules Files: 566, Current Test Files: 583, Missing Tests Files: 97.
   
   tests/providers/amazon/aws/hooks/test_dms.py
   tests/providers/amazon/aws/links/test_base_aws.py
   tests/providers/amazon/aws/links/test_batch.py
   tests/providers/amazon/aws/links/test_emr.py
   tests/providers/amazon/aws/links/test_logs.py
   tests/providers/amazon/aws/operators/test_aws_lambda.py
   tests/providers/amazon/aws/operators/test_dms.py
   tests/providers/amazon/aws/operators/test_emr.py
   tests/providers/amazon/aws/operators/test_s3.py
   tests/providers/amazon/aws/operators/test_sagemaker.py
   tests/providers/amazon/aws/sensors/test_dms.py
   tests/providers/amazon/aws/sensors/test_ecs.py
   tests/providers/amazon/aws/sensors/test_emr.py
   tests/providers/amazon/aws/sensors/test_s3.py
   tests/providers/amazon/aws/sensors/test_sagemaker.py
   tests/providers/amazon/aws/test_exceptions.py
   tests/providers/amazon/aws/utils/test_rds.py
   tests/providers/amazon/aws/waiters/test_base_waiter.py
   tests/providers/apache/cassandra/hooks/test_cassandra.py
   tests/providers/apache/druid/operators/test_druid_check.py
   
tests/providers/cncf/kubernetes/backcompat/test_backwards_compat_converters.py
   tests/providers/cncf/kubernetes/test_python_kubernetes_script.py
   tests/providers/cncf/kubernetes/utils/test_xcom_sidecar.py
   tests/providers/databricks/hooks/test_databricks_base.py
   tests/providers/databricks/utils/test_databricks.py
   tests/providers/dbt/cloud/hooks/test_dbt.py
   tests/providers/dbt/cloud/operators/test_dbt.py
   tests/providers/dbt/cloud/sensors/test_dbt.py
   tests/providers/elasticsearch/log/test_es_json_formatter.py
   tests/providers/google/cloud/links/test_base.py
   tests/providers/google/cloud/links/test_bigquery.py
   tests/providers/google/cloud/links/test_bigquery_dts.py
   tests/providers/google/cloud/links/test_bigtable.py
   tests/providers/google/cloud/links/test_cloud_build.py
   tests/providers/google/cloud/links/test_cloud_functions.py
   tests/providers/google/cloud/links/test_cloud_memorystore.py
   tests/providers/google/cloud/links/test_cloud_sql.py
   tests/providers/google/cloud/links/test_cloud_storage_transfer.py
   tests/providers/google/cloud/links/test_cloud_tasks.py
   tests/providers/google/cloud/links/test_compute.py
   tests/providers/google/cloud/links/test_data_loss_prevention.py
   tests/providers/google/cloud/links/test_datacatalog.py
   tests/providers/google/cloud/links/test_dataflow.py
   tests/providers/google/cloud/links/test_dataform.py
   tests/providers/google/cloud/links/test_dataplex.py
   tests/providers/google/cloud/links/test_dataprep.py
   tests/providers/google/cloud/links/test_dataproc.py
   tests/providers/google/cloud/links/test_datastore.py
   tests/providers/google/cloud/links/test_kubernetes_engine.py
   tests/providers/google/cloud/links/test_life_sciences.py
   tests/providers/google/cloud/links/test_mlengine.py
   tests/providers/google/cloud/links/test_pubsub.py
   tests/providers/google/cloud/links/test_spanner.py
   tests/providers/google/cloud/links/test_stackdriver.py
   tests/providers/google/cloud/links/test_vertex_ai.py
   tests/providers/google/cloud/links/test_workflows.py
   tests/providers/google/cloud/operators/vertex_ai/test_auto_ml.py
   tests/providers/google/cloud/operators/vertex_ai/test_batch_prediction_job.py
   tests/providers/google/cloud/operators/vertex_ai/test_custom_job.py
   tests/providers/google/cloud/operators/vertex_ai/test_dataset.py
   tests/providers/google/cloud/operators/vertex_ai/test_endpoint_service.py
   
tests/providers/google/cloud/operators/vertex_ai/test_hyperparameter_tuning_job.py
   tests/providers/google/cloud/operators/vertex_ai/test_model_service.py
   tests/providers/google/cloud/sensors/test_dataform.py
   tests/providers/google/cloud/transfers/test_presto_to_gcs.py
   tests/providers/google/cloud/transfers/test_trino_to_gcs.py
   tests/providers/google/cloud/triggers/test_cloud_composer.py
   tests/providers/google/cloud/triggers/test_dataproc.py
   tests/providers/google/cloud/utils/test_bigquery.py
   tests/providers/google/cloud/utils/test_bigquery_get_data.py
   tests/providers/google/cloud/utils/test_dataform.py
   tests/providers/google/common/links/test_storage.py
   tests/providers/google/common/test_consts.py
   tests/providers/google/test_go_module_utils.py
   tests/providers/microsoft/azure/hooks/test_batch.py
   tests/providers/microsoft/azure/hooks/test_container_instance.py
   tests/providers/microsoft/azure/hooks/test_container_registry.py
   tests/providers/microsoft/azure/hooks/test_container_volume.py
   tests/providers/microsoft/azure/hooks/test_cosmos.py
   tests/providers/microsoft/azure/hooks/test_data_factory.py
   tests/providers/microsoft/azure/hooks/test_data_lake.py
   tests/providers/microsoft/azure/hooks/test_fileshare.py
   tests/providers/microsoft/azure/hooks/test_synapse.py
   tests/providers/microsoft/azure/operators/test_adls.py
   tests/providers/microsoft/azure/operators/test_batch.py
   tests/providers/microsoft/azure/operators/test_container_instances.py
   tests/providers/microsoft/azure/operators/test_cosmos.py
   tests/providers/microsoft/azure/operators/test_data_factory.py
   tests/providers/microsoft/azure/operators/test_synapse.py
   tests/providers/microsoft/azure/secrets/test_key_vault.py
   tests/providers/microsoft/azure/sensors/test_cosmos.py
   tests/providers/microsoft/azure/sensors/test_data_factory.py
   tests/providers/mongo/sensors/test_mongo.py
   tests/providers/presto/transfers/test_gcs_to_presto.py
   tests/providers/redis/operators/test_redis_publish.py
   tests/providers/redis/sensors/test_redis_key.py
   tests/providers/trino/transfers/test_gcs_to_trino.py
   ```
   
   Some of them about deprecated modules



-- 
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]

Reply via email to