Skip to content

Commit 9d673c2

Browse files
authored
MRG: Merge pull request #20 from octue/update-storage-bucket
Update storage bucket
2 parents 1d04fe4 + 51a31a4 commit 9d673c2

File tree

7 files changed

+6
-8
lines changed

7 files changed

+6
-8
lines changed

app_configuration.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"output_location": "gs://octue-octue-twined-services-octue-twined/openfast-service/outputs"
2+
"output_location": "gs://octue-twined-services-octue-twined/openfast-service/outputs"
33
}

octue.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ services:
33
name: openfast-service
44
app_source_path: openfast_service
55
app_configuration_path: app_configuration.json
6-
diagnostics_cloud_path: gs://octue-octue-twined-services-octue-twined/openfast-service/diagnostics
6+
diagnostics_cloud_path: gs://octue-twined-services-octue-twined/openfast-service/diagnostics
77
event_store_table_id: octue_twined.service-events
88
service_registries:
99
- name: Octue service registry

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "openfast-service"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
description = ""
55
authors = ["Marcus Lugg <[email protected]>"]
66
readme = "README.md"

tests/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class BaseTestCase(unittest.TestCase):
77
# Add a cloud storage emulator.
88
test_result_modifier = GoogleCloudStorageEmulatorTestResultModifier(
9-
default_bucket_name="octue-octue-twined-services-octue-twined"
9+
default_bucket_name="octue-twined-services-octue-twined"
1010
)
1111

1212
setattr(unittest.TestResult, "startTestRun", test_result_modifier.startTestRun)

tests/data/openfast_iea/IEA-3.4-130-RWT.out

Lines changed: 0 additions & 1 deletion
This file was deleted.

tests/data/openfast_iea/IEA-3.4-130-RWT.outb

Lines changed: 0 additions & 1 deletion
This file was deleted.

tests/test_deployment.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
apply_log_handler()
88

99

10-
SRUID = "octue/openfast-service:0.10.2"
10+
SRUID = "octue/openfast-service:0.10.3"
1111
PROJECT_ID = "octue-twined-services"
1212

1313

@@ -21,7 +21,7 @@ def test_single_question(self):
2121
responses. Datasets from Google Cloud Storage are used for this test.
2222
"""
2323
input_manifest = Manifest(
24-
datasets={"openfast": "gs://octue-octue-twined-services-octue-twined/openfast-service/testing/openfast_iea"}
24+
datasets={"openfast": "gs://octue-twined-services-octue-twined/openfast-service/testing/openfast_iea"}
2525
)
2626

2727
child = Child(id=SRUID, backend={"name": "GCPPubSubBackend", "project_name": PROJECT_ID})

0 commit comments

Comments
 (0)