Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stactools_pipelines/models/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Pipeline(BaseModel):
compute: ComputeEnum
secret_arn: str
ingestor_url: str
sns: Optional[str]
sns: Optional[str] = None
inventory_location: Optional[str] = None
historic_frequency: Optional[int] = None
initial_chunk: Optional[str] = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

def test_create_item():
item = module_create_item()
assert type(item) == pystac.item.Item
assert isinstance(item, pystac.Item)


@pytest.mark.parametrize("pipeline_id", ["aws_noaa_oisst_avhrr_only"])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

def test_create_collection():
collection = module_create_collection()
assert type(collection) == pystac.collection.Collection
assert isinstance(collection, pystac.Collection)


@pytest.mark.parametrize("pipeline_id", ["aws_noaa_oisst_avhrr_only"])
Expand Down