-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Executor is refactored in order to track cancelled tasks on the level of the scheduler instead of tracking that on the Task level itself * Report generation with an executor is tested * Some redundancy code is removed
- Loading branch information
Dmytro Parfeniuk
committed
Jul 17, 2024
1 parent
f905346
commit 785aae6
Showing
15 changed files
with
422 additions
and
202 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 |
---|---|---|
|
@@ -8,6 +8,7 @@ install.dev: | |
python -m pip install -e .[dev] | ||
|
||
|
||
|
||
.PHONY: build | ||
build: | ||
python setup.py sdist bdist_wheel | ||
|
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
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,5 +1,5 @@ | ||
from .load_generator import LoadGenerationModes, LoadGenerator | ||
from .load_generator import LoadGenerationMode, LoadGenerator | ||
from .scheduler import Scheduler | ||
from .task import Task | ||
|
||
__all__ = ["LoadGenerationModes", "LoadGenerator", "Scheduler", "Task"] | ||
__all__ = ["LoadGenerationMode", "LoadGenerator", "Scheduler", "Task"] |
Oops, something went wrong.