Skip to content

Commit 25a1fb1

Browse files
Bump peter-evans/create-pull-request from 6.0.4 to 6.0.5 in the github-actions group (#608)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tobias Raabe <raabe@posteo.de>
1 parent 8be5cbf commit 25a1fb1

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ jobs:
5555
sudo apt-get update
5656
sudo apt-get install graphviz graphviz-dev
5757
58-
- if: matrix.os == 'macos-latest'
59-
run: brew install graphviz
60-
6158
# Unit, integration, and end-to-end tests.
6259

6360
- name: Run unit tests and doctests.

.github/workflows/update-plugin-list.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: python scripts/update_plugin_list.py
3838

3939
- name: Create Pull Request
40-
uses: peter-evans/create-pull-request@9153d834b60caba6d51c9b9510b087acf9f33f83
40+
uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e
4141
with:
4242
commit-message: '[automated] Update plugin list'
4343
author: 'Tobias Raabe <tobiasraabe@users.noreply.github.com>'

tests/test_dag_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# Test should run always on remote except on Windows and locally only with the package
2020
# installed.
2121
_TEST_SHOULD_RUN = _IS_PYGRAPHVIZ_INSTALLED or (
22-
os.environ.get("CI") and sys.platform != "win32"
22+
os.environ.get("CI") and sys.platform == "linux"
2323
)
2424
_GRAPH_LAYOUTS = ["neato", "dot", "fdp", "sfdp", "twopi", "circo"]
2525
_TEST_FORMATS = ["dot", "pdf", "png", "jpeg", "svg"]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ commands =
2121
[testenv:test]
2222
extras = test
2323
deps =
24-
pygraphviz;platform_system != "Windows"
24+
pygraphviz;platform_system == "Linux"
2525
commands =
2626
pytest --nbmake {posargs}

0 commit comments

Comments
 (0)