Skip to content

Commit

Permalink
FIX: Use new octue method name
Browse files Browse the repository at this point in the history
  • Loading branch information
cortadocodes committed May 18, 2022
1 parent 378f47d commit a3e7118
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def run(analysis):

with tempfile.TemporaryDirectory() as temporary_directory:
input_dataset = analysis.input_manifest.datasets["turbsim"]
input_dataset.download_all_files(temporary_directory)
input_dataset.download(temporary_directory)
input_file = input_dataset.files.one()

logger.info("Starting turbsim analysis.")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_deployment.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class TestDeployment(unittest.TestCase):
condition=os.getenv("RUN_DEPLOYMENT_TESTS", "0").lower() == "1",
reason="'RUN_DEPLOYMENT_TESTS' environment variable is 0 or not present.",
)
def test_cloud_run_integration(self):
def test_cloud_run_deployment(self):
"""Test that the Google Cloud Run integration works, providing a service that can be asked questions and send
responses. An input dataset from Google Cloud Storage is used for this test.
"""
Expand Down

0 comments on commit a3e7118

Please sign in to comment.