From 34f935dc07f124858775fc2cc6c319a6eca1f22b Mon Sep 17 00:00:00 2001 From: Johannes Maron Date: Wed, 12 Nov 2025 12:55:59 +0100 Subject: [PATCH 1/3] Fix graphviz typo in CI suite --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c2c59b4..1d055fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: extras: "test,reversion" - python-version: "3.x" django-version: "5.2" - extras: "test,graphiz" + extras: "test,graphviz" steps: - uses: actions/checkout@v5 - uses: actions/setup-python@v6 From a423b54121ab2d22efa973a52b290e0a5bddec1b Mon Sep 17 00:00:00 2001 From: Johannes Maron Date: Wed, 12 Nov 2025 12:58:12 +0100 Subject: [PATCH 2/3] Enable more tests and add graphviz extra to docs --- .github/workflows/ci.yml | 2 +- docs/tutorial/index.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d055fd..792f461 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: extras: "test,reversion" - python-version: "3.x" django-version: "5.2" - extras: "test,graphviz" + extras: "test,graphviz,dramatiq" steps: - uses: actions/checkout@v5 - uses: actions/setup-python@v6 diff --git a/docs/tutorial/index.rst b/docs/tutorial/index.rst index 88f61fd..12f9949 100644 --- a/docs/tutorial/index.rst +++ b/docs/tutorial/index.rst @@ -12,7 +12,7 @@ the PyPi package… .. code:: shell - python3 -m pip install "joeflow[reversion,dramatiq,celery]" + python3 -m pip install "joeflow[reversion,dramatiq,celery,graphviz]" …and add ``joeflow`` to the ``INSTALLED_APP`` setting. You will also need to have celery setup. From 6c4d7f49db63bcd3265416744e8906aee8af3dbd Mon Sep 17 00:00:00 2001 From: Johannes Maron Date: Wed, 12 Nov 2025 13:03:19 +0100 Subject: [PATCH 3/3] Add missing codecov token to CI --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 792f461..bb9a5e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,3 +65,5 @@ jobs: - run: python -m pip install -e .[${{ matrix.extras }}] - run: python -m pytest - uses: codecov/codecov-action@v5 + with: + token: ${{ secrets.CODECOV_TOKEN }}