Skip to content

Commit

Permalink
name change
Browse files Browse the repository at this point in the history
  • Loading branch information
darinyu-coursera committed Nov 13, 2015
1 parent 125f793 commit 462f689
Show file tree
Hide file tree
Showing 14 changed files with 7 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion dataduct/steps/scripts/column_check_test.py
Expand Up @@ -4,7 +4,7 @@
with the correct values
"""

from dataduct.steps.utils.column_check import column_check
from dataduct.steps.executors.column_check import column_check

def main():
column_check()
Expand Down
2 changes: 1 addition & 1 deletion dataduct/steps/scripts/count_check_test.py
Expand Up @@ -4,7 +4,7 @@
number of rows in the destination table
"""

from dataduct.steps.utils.count_check import count_check
from dataduct.steps.executors.count_check import count_check

def main():
count_check()
Expand Down
2 changes: 1 addition & 1 deletion dataduct/steps/scripts/create_load_redshift_runner.py
Expand Up @@ -3,7 +3,7 @@
"""Replacement for the load step to use the redshift COPY command instead
"""

from dataduct.steps.utils.create_load_redshift import create_load_redshift_runner
from dataduct.steps.executors.create_load_redshift import create_load_redshift_runner

def main():
create_load_redshift_runner()
Expand Down
2 changes: 1 addition & 1 deletion dataduct/steps/scripts/pipeline_dependency_check.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python

from dataduct.steps.utils.dependency_check import dependency_check
from dataduct.steps.executors.dependency_check import dependency_check

def main():
dependency_check()
Expand Down
2 changes: 1 addition & 1 deletion dataduct/steps/scripts/primary_key_test.py
Expand Up @@ -3,7 +3,7 @@
"""Script that checks for primary key violations on the input table
"""

from dataduct.steps.utils.primary_key_check import primary_key_check
from dataduct.steps.executors.primary_key_check import primary_key_check


def main():
Expand Down
2 changes: 1 addition & 1 deletion dataduct/steps/scripts/script_runner.py
Expand Up @@ -4,7 +4,7 @@
a transform step with the script_directory argument
"""

from dataduct.steps.utils.runner import script_runner
from dataduct.steps.executors.runner import script_runner

def main():
script_runner()
Expand Down
2 changes: 1 addition & 1 deletion dataduct/steps/scripts/sql_runner.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
"""Runner for the upsert SQL step
"""
from dataduct.steps.utils.runner import sql_runner
from dataduct.steps.executors.runner import sql_runner

def main():
sql_runner()
Expand Down

0 comments on commit 462f689

Please sign in to comment.