-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: modify serializer protocol and implementations to work with streaming io * refactor: adapt local runtime to new serializer protocol * refactor: adapt cli to refactored local runtime (save progress) * refactor: adapt cli to refactored local runtime * refactor: adapt yaml serializer example * docs: update serializer performance section * test: manually test memory allocation * test: add serializer memory footprint tests * chore: upgrade pytest to ^6.2 and commit poetry.lock * docs: remove memory footprint as a limitation of the local runtime * fix: do not make assertions about json indentation on windows * test: cover custom exceptions in runtime.cli.invoke_with_locations
- Loading branch information
Showing
40 changed files
with
1,887 additions
and
337 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -204,4 +204,3 @@ jobs: | |
fail_ci_if_error: true | ||
env_vars: OS,PYTHON | ||
verbose: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,6 +127,3 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# Poetry | ||
poetry.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
"""Run DAGs or nodes in memory.""" | ||
|
||
from dagger.runtime.local.dag import invoke # noqa | ||
from dagger.runtime.local.invoke import ( # noqa | ||
ReturnDeserializedOutputs, | ||
StoreSerializedOutputsInPath, | ||
invoke, | ||
) | ||
from dagger.runtime.local.types import ( # noqa | ||
NodeOutput, | ||
NodeOutputs, | ||
OutputFile, | ||
PartitionedOutput, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.