Skip to content

Commit

Permalink
adding integration_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
patkivikram committed Oct 12, 2022
1 parent 81c7973 commit 520bee3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .markdownlint.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@
"MD025": {
"front_matter_title": ""
},
"MD041": false
"MD041": false,
"MD022": false
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def order_template(template_name: str) -> ITemplateDAG:
payment_process_builder.set_root_task(payment_command_task_template)
payment_process_builder.set_type(DefaultProcessTemplateDAGInstance)

# Build more processes like above
# Build more processes like above and link them

[...]

Expand Down
4 changes: 2 additions & 2 deletions dagger/templates/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ def build(self) -> TaskTemplate:


class IntervalTaskTemplateBuilder(TriggerTaskTemplateBuilder):
_time_to_execute_key: Optional[str] = None
_time_to_execute_key: Optional[str] = None # type: ignore
_time_to_force_complete_key: str
_interval_execute_period_key: str

Expand All @@ -813,7 +813,7 @@ def set_time_to_force_complete_lookup_key(
return self

def build(self) -> TaskTemplate:
return DefaultIntervalTaskTemplate(
return DefaultIntervalTaskTemplate( # type: ignore
app=self.app,
type=self._type,
name=self.name,
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
aiohttp>=3.5.2,<4.0
cachetools==5.0.0
faust-streaming>=0.6.1
jsonpickle==2.1.0
jsonpickle>=2.1.0
kafka-python==2.0.2
opentracing>=1.3.0,<=2.4.0
Tornado==6.1
Expand Down

0 comments on commit 520bee3

Please sign in to comment.