Skip to content

Commit

Permalink
Merge pull request #34 from andrewm4894/bigquery-operator-submodule
Browse files Browse the repository at this point in the history
refactor bigquery into submodule
  • Loading branch information
andrewm4894 authored Jun 17, 2023
2 parents c586df4 + 7ee9549 commit 3829fb3
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion airflow_anomaly_detection/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

__version__ = "0.0.21"
__version__ = "0.0.22"

def get_provider_info():
return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
import pendulum
import yaml
from airflow.decorators import dag
from airflow_anomaly_detection.operators.bigquery_metric_batch_ingest_operator import BigQueryMetricBatchIngestOperator
from airflow_anomaly_detection.operators.bigquery_metric_batch_train_operator import BigQueryMetricBatchTrainOperator
from airflow_anomaly_detection.operators.bigquery_metric_batch_score_operator import BigQueryMetricBatchScoreOperator
from airflow_anomaly_detection.operators.bigquery_metric_batch_alert_operator import BigQueryMetricBatchAlertOperator
from airflow_anomaly_detection.operators.bigquery.metric_batch_ingest_operator import BigQueryMetricBatchIngestOperator
from airflow_anomaly_detection.operators.bigquery.metric_batch_train_operator import BigQueryMetricBatchTrainOperator
from airflow_anomaly_detection.operators.bigquery.metric_batch_score_operator import BigQueryMetricBatchScoreOperator
from airflow_anomaly_detection.operators.bigquery.metric_batch_alert_operator import BigQueryMetricBatchAlertOperator
from airflow_anomaly_detection.operators.metric_batch_email_notify_operator import MetricBatchEmailNotifyOperator
from airflow_anomaly_detection.utils import get_metric_batch_configs

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest
from unittest.mock import patch, MagicMock
from pandas import DataFrame
from airflow_anomaly_detection.operators.bigquery_metric_batch_alert_operator import BigQueryMetricBatchAlertOperator
from airflow_anomaly_detection.operators.bigquery.metric_batch_alert_operator import BigQueryMetricBatchAlertOperator

class TestBigQueryMetricBatchAlertOperator(unittest.TestCase):

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "airflow-provider-anomaly-detection"
version = "0.0.21"
version = "0.0.22"
authors = [
{ name="andrewm4894", email="[email protected]" },
]
Expand Down

0 comments on commit 3829fb3

Please sign in to comment.