This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from 0d90c62bac Fix Type Error while using DynamoDBToS3Operator (#28158)
add df608fe63f Move Integration tests to separate package under tests
(#28170)
No new revisions were added by this update.
Summary of changes:
.pre-commit-config.yaml | 1 +
Dockerfile.ci | 7 +-
.../airflow_breeze/commands/testing_commands.py | 2 +-
scripts/docker/entrypoint_ci.sh | 7 +-
tests/cli/commands/test_celery_command.py | 31 --
tests/executors/test_celery_executor.py | 259 +----------------
.../integration}/__init__.py | 0
.../integration/api}/__init__.py | 0
.../integration/api/auth}/__init__.py | 0
.../integration/api/auth/backend}/__init__.py | 0
.../api/auth/backend/test_kerberos_auth.py | 0
.../integration/cli}/__init__.py | 0
.../integration/cli/commands}/__init__.py | 0
.../cli/commands/test_celery_command.py | 57 ++++
.../integration/executors}/__init__.py | 0
.../executors/test_celery_executor.py | 313 +--------------------
.../integration/providers}/__init__.py | 0
.../integration/providers/apache}/__init__.py | 0
.../providers/apache/cassandra}/__init__.py | 0
.../providers/apache/cassandra/hooks}/__init__.py | 0
.../apache/cassandra/hooks/test_cassandra.py | 0
.../providers/apache/pinot}/__init__.py | 0
.../providers/apache/pinot/hooks}/__init__.py | 0
.../providers/apache/pinot/hooks/test_pinot.py} | 20 +-
.../integration/providers/google}/__init__.py | 0
.../providers/google/cloud}/__init__.py | 0
.../providers/google/cloud/transfers}/__init__.py | 0
.../google/cloud/transfers/test_presto_to_gcs.py | 0
.../cloud/transfers/test_presto_to_gcs_system.py | 0
.../google/cloud/transfers/test_trino_to_gcs.py | 0
.../integration/providers/mongo}/__init__.py | 0
.../providers/mongo/sensors}/__init__.py | 0
.../providers/mongo/sensors/test_mongo.py | 0
.../integration/providers/redis}/__init__.py | 0
.../integration/providers/redis/hooks}/__init__.py | 0
.../providers/redis/hooks/test_redis.py} | 29 +-
.../providers/redis/operators}/__init__.py | 0
.../redis/operators/test_redis_publish.py | 0
.../providers/redis/sensors}/__init__.py | 0
.../providers/redis/sensors/test_redis_key.py | 0
.../providers/redis/sensors/test_redis_pub_sub.py | 44 +--
.../integration/providers/trino}/__init__.py | 0
.../integration/providers/trino/hooks}/__init__.py | 0
.../providers/trino/hooks/test_trino.py | 48 ++++
.../integration/security}/__init__.py | 0
tests/integration/security/test_kerberos.py | 75 +++++
tests/providers/apache/cassandra/hooks/__init__.py | 16 --
tests/providers/apache/pinot/hooks/test_pinot.py | 10 -
tests/providers/redis/hooks/test_redis.py | 18 --
.../providers/redis/sensors/test_redis_pub_sub.py | 46 ---
tests/providers/trino/hooks/test_trino.py | 24 --
tests/security/test_kerberos.py | 48 ----
52 files changed, 224 insertions(+), 831 deletions(-)
copy {airflow/api_connexion => tests/integration}/__init__.py (100%)
copy {airflow/api_connexion => tests/integration/api}/__init__.py (100%)
copy {airflow/api_connexion => tests/integration/api/auth}/__init__.py (100%)
copy {airflow/api_connexion => tests/integration/api/auth/backend}/__init__.py
(100%)
rename tests/{ => integration}/api/auth/backend/test_kerberos_auth.py (100%)
copy {airflow/api_connexion => tests/integration/cli}/__init__.py (100%)
copy {airflow/api_connexion => tests/integration/cli/commands}/__init__.py
(100%)
create mode 100644 tests/integration/cli/commands/test_celery_command.py
copy {airflow/api_connexion => tests/integration/executors}/__init__.py (100%)
copy tests/{ => integration}/executors/test_celery_executor.py (52%)
copy {airflow/api_connexion => tests/integration/providers}/__init__.py (100%)
copy {airflow/api_connexion => tests/integration/providers/apache}/__init__.py
(100%)
copy {airflow/api_connexion =>
tests/integration/providers/apache/cassandra}/__init__.py (100%)
copy {airflow/api_connexion =>
tests/integration/providers/apache/cassandra/hooks}/__init__.py (100%)
rename tests/{ =>
integration}/providers/apache/cassandra/hooks/test_cassandra.py (100%)
copy {airflow/api_connexion =>
tests/integration/providers/apache/pinot}/__init__.py (100%)
copy {airflow/api_connexion =>
tests/integration/providers/apache/pinot/hooks}/__init__.py (100%)
copy tests/{providers/arangodb/operators/test_arangodb.py =>
integration/providers/apache/pinot/hooks/test_pinot.py} (60%)
copy {airflow/api_connexion => tests/integration/providers/google}/__init__.py
(100%)
copy {airflow/api_connexion =>
tests/integration/providers/google/cloud}/__init__.py (100%)
copy {airflow/api_connexion =>
tests/integration/providers/google/cloud/transfers}/__init__.py (100%)
rename tests/{ =>
integration}/providers/google/cloud/transfers/test_presto_to_gcs.py (100%)
rename tests/{ =>
integration}/providers/google/cloud/transfers/test_presto_to_gcs_system.py
(100%)
rename tests/{ =>
integration}/providers/google/cloud/transfers/test_trino_to_gcs.py (100%)
copy {airflow/api_connexion => tests/integration/providers/mongo}/__init__.py
(100%)
copy {airflow/api_connexion =>
tests/integration/providers/mongo/sensors}/__init__.py (100%)
rename tests/{ => integration}/providers/mongo/sensors/test_mongo.py (100%)
copy {airflow/api_connexion => tests/integration/providers/redis}/__init__.py
(100%)
copy {airflow/api_connexion =>
tests/integration/providers/redis/hooks}/__init__.py (100%)
copy tests/{providers/redis/sensors/test_redis_key.py =>
integration/providers/redis/hooks/test_redis.py} (57%)
copy {airflow/api_connexion =>
tests/integration/providers/redis/operators}/__init__.py (100%)
rename tests/{ => integration}/providers/redis/operators/test_redis_publish.py
(100%)
copy {airflow/api_connexion =>
tests/integration/providers/redis/sensors}/__init__.py (100%)
rename tests/{ => integration}/providers/redis/sensors/test_redis_key.py (100%)
copy tests/{ => integration}/providers/redis/sensors/test_redis_pub_sub.py
(64%)
copy {airflow/api_connexion => tests/integration/providers/trino}/__init__.py
(100%)
copy {airflow/api_connexion =>
tests/integration/providers/trino/hooks}/__init__.py (100%)
create mode 100644 tests/integration/providers/trino/hooks/test_trino.py
copy {airflow/api_connexion => tests/integration/security}/__init__.py (100%)
create mode 100644 tests/integration/security/test_kerberos.py
delete mode 100644 tests/providers/apache/cassandra/hooks/__init__.py