diff --git a/.github/workflows/publish_package.yml b/.github/workflows/publish_package.yml index 103f1340871..0d2440aee68 100644 --- a/.github/workflows/publish_package.yml +++ b/.github/workflows/publish_package.yml @@ -11,6 +11,9 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v2 + with: + submodules: true + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v2 diff --git a/agbenchmark/utils/dependencies/main.py b/agbenchmark/utils/dependencies/main.py index 9e3acf54e48..cf09b6c88a7 100644 --- a/agbenchmark/utils/dependencies/main.py +++ b/agbenchmark/utils/dependencies/main.py @@ -192,7 +192,7 @@ def print_processed_dependencies(self, colors: bool = False) -> None: colorama.deinit() @property - def sorted_items(self, show_graph: Optional[bool] = True) -> Generator: + def sorted_items(self, show_graph: Optional[bool] = False) -> Generator: """Get a sorted list of tests where all tests are sorted after their dependencies.""" # Build a directed graph for sorting dag = networkx.DiGraph() diff --git a/pyproject.toml b/pyproject.toml index 9dbe11f19fe..df64833210c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "agbenchmark" -version = "0.0.3" +version = "0.0.4" description = "Benchmarking the performance of agents far and wide, regardless of how they are set up and how they work" authors = ["Silen Naihin "] license = "MIT"