From 0f2b717ace06c3d68ffa8d71de499dd2e1bd5f11 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 21:50:37 +0000 Subject: [PATCH 1/4] Bump peter-evans/create-pull-request in the github-actions group Bumps the github-actions group with 1 update: [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request). Updates `peter-evans/create-pull-request` from 6.0.4 to 6.0.5 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/9153d834b60caba6d51c9b9510b087acf9f33f83...6d6857d36972b65feb161a90e484f2984215f83e) --- updated-dependencies: - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/update-plugin-list.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-plugin-list.yml b/.github/workflows/update-plugin-list.yml index aa7dff8d..38005544 100644 --- a/.github/workflows/update-plugin-list.yml +++ b/.github/workflows/update-plugin-list.yml @@ -37,7 +37,7 @@ jobs: run: python scripts/update_plugin_list.py - name: Create Pull Request - uses: peter-evans/create-pull-request@9153d834b60caba6d51c9b9510b087acf9f33f83 + uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e with: commit-message: '[automated] Update plugin list' author: 'Tobias Raabe ' From 270b820b444999a6af33b28b1b3237801884e6c7 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Fri, 3 May 2024 12:03:59 +0200 Subject: [PATCH 2/4] Fix. --- .github/workflows/main.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 23e1db0b..95bff95e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -55,9 +55,6 @@ jobs: sudo apt-get update sudo apt-get install graphviz graphviz-dev - - if: matrix.os == 'macos-latest' - run: brew install graphviz - # Unit, integration, and end-to-end tests. - name: Run unit tests and doctests. From f196e5be3cba6206535ec0f9ad77316463922a79 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Fri, 3 May 2024 12:07:28 +0200 Subject: [PATCH 3/4] fix. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 4e82bf7f..295636f5 100644 --- a/tox.ini +++ b/tox.ini @@ -21,6 +21,6 @@ commands = [testenv:test] extras = test deps = - pygraphviz;platform_system != "Windows" + pygraphviz;platform_system == "Linux" commands = pytest --nbmake {posargs} From 26528ca236d2c1bda08b0418ffe025367d481af7 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Fri, 3 May 2024 12:12:08 +0200 Subject: [PATCH 4/4] fix. --- tests/test_dag_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_dag_command.py b/tests/test_dag_command.py index ef05c82b..eef35d96 100644 --- a/tests/test_dag_command.py +++ b/tests/test_dag_command.py @@ -19,7 +19,7 @@ # Test should run always on remote except on Windows and locally only with the package # installed. _TEST_SHOULD_RUN = _IS_PYGRAPHVIZ_INSTALLED or ( - os.environ.get("CI") and sys.platform != "win32" + os.environ.get("CI") and sys.platform == "linux" ) _GRAPH_LAYOUTS = ["neato", "dot", "fdp", "sfdp", "twopi", "circo"] _TEST_FORMATS = ["dot", "pdf", "png", "jpeg", "svg"]