michalslowikowski00 commented on a change in pull request #7743: [AIRFLOW-7075] Operators for storing information from GCS into GA URL: https://github.com/apache/airflow/pull/7743#discussion_r397008333
########## File path: tests/providers/google/marketing_platform/operators/test_analytics_system.py ########## @@ -17,18 +17,38 @@ import pytest +from airflow.providers.google.marketing_platform.example_dags.example_analytics import BUCKET, BUCKET_FILENAME from tests.providers.google.cloud.utils.gcp_authenticator import GMP_KEY from tests.test_utils.gcp_system_helpers import MARKETING_DAG_FOLDER, GoogleSystemTest, provide_gcp_context +DATA = """pagePath,dimension1 +how_to_make_pizza,1 +how_to_make_doughnuts,2 +how_to_build_a_treehouse,3 +how_to_make_paper_airplanes,4 +""" + + # Required scopes SCOPES = [ Review comment: Ok :) ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
