Skip to content

Commit

Permalink
update command
Browse files Browse the repository at this point in the history
  • Loading branch information
coilysiren committed Nov 21, 2024
1 parent 3572e6a commit 390a4f6
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions analytics/tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def test_init_db(self):
# setup - create command
command = [
"etl",
"initialize_database",
"db_migrate",
]
# execution
result = runner.invoke(app, command)
Expand All @@ -311,10 +311,7 @@ def test_transform_and_load_with_valid_parameters(self):
print(result.stdout)
# validation - check there wasn't an error
assert result.exit_code == 0
assert (
f"running transform and load with effective date {self.EFFECTIVE_DATE}"
in result.stdout
)
assert f"running transform and load with effective date {self.EFFECTIVE_DATE}" in result.stdout
assert "project row(s) processed: 2" in result.stdout
assert "quad row(s) processed: 1" in result.stdout
assert "deliverable row(s) processed: 4" in result.stdout
Expand Down

0 comments on commit 390a4f6

Please sign in to comment.