Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
IceS2 committed Jul 24, 2024
1 parent 7795560 commit 0038b8c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def test_bigquery_system_metrics(self):
profiler_workflow = ProfilerWorkflow.create(config)
profiler_workflow.execute()
profiler_workflow.raise_from_status()
print_status(profiler_workflow)
profiler_workflow.print_status()
profiler_workflow.stop()

# get latest profile metrics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def test_redshift_system_metrics(self):
profiler_workflow = ProfilerWorkflow.create(config)
profiler_workflow.execute()
profiler_workflow.raise_from_status()
print_status(profiler_workflow)
profiler_workflow.print_status()
profiler_workflow.stop()

# get latest profile metrics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def test_snowflake_system_metrics(self):
profiler_workflow = ProfilerWorkflow.create(config)
profiler_workflow.execute()
profiler_workflow.raise_from_status()
print_status(profiler_workflow)
profiler_workflow.print_status()
profiler_workflow.stop()

# get latest profile metrics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def test_workflow_sample_profile(self):

profiler_workflow = ProfilerWorkflow.create(workflow_config)
profiler_workflow.execute()
print_status(profiler_workflow)
profiler_workflow.print_status()
profiler_workflow.stop()

table = self.metadata.get_by_name(
Expand Down Expand Up @@ -360,7 +360,7 @@ def test_workflow_datetime_partition(self):

profiler_workflow = ProfilerWorkflow.create(workflow_config)
profiler_workflow.execute()
print_status(profiler_workflow)
profiler_workflow.print_status()
profiler_workflow.stop()

table = self.metadata.get_by_name(
Expand Down Expand Up @@ -399,7 +399,7 @@ def test_workflow_datetime_partition(self):

profiler_workflow = ProfilerWorkflow.create(workflow_config)
profiler_workflow.execute()
print_status(profiler_workflow)
profiler_workflow.print_status()
profiler_workflow.stop()

table = self.metadata.get_by_name(
Expand Down Expand Up @@ -447,7 +447,7 @@ def test_workflow_integer_range_partition(self):

profiler_workflow = ProfilerWorkflow.create(workflow_config)
profiler_workflow.execute()
print_status(profiler_workflow)
profiler_workflow.print_status()
profiler_workflow.stop()

table = self.metadata.get_by_name(
Expand Down Expand Up @@ -487,7 +487,7 @@ def test_workflow_integer_range_partition(self):

profiler_workflow = ProfilerWorkflow.create(workflow_config)
profiler_workflow.execute()
print_status(profiler_workflow)
profiler_workflow.print_status()
profiler_workflow.stop()

table = self.metadata.get_by_name(
Expand Down Expand Up @@ -534,7 +534,7 @@ def test_workflow_values_partition(self):

profiler_workflow = ProfilerWorkflow.create(workflow_config)
profiler_workflow.execute()
print_status(profiler_workflow)
profiler_workflow.print_status()
profiler_workflow.stop()

table = self.metadata.get_by_name(
Expand Down Expand Up @@ -574,7 +574,7 @@ def test_workflow_values_partition(self):

profiler_workflow = ProfilerWorkflow.create(workflow_config)
profiler_workflow.execute()
print_status(profiler_workflow)
profiler_workflow.print_status()
profiler_workflow.stop()

table = self.metadata.get_by_name(
Expand Down

0 comments on commit 0038b8c

Please sign in to comment.