From b20773364c72462dfd37b0379d1baba208194532 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Mon, 26 May 2025 12:33:24 +0200 Subject: [PATCH] path format in ci.yml fixed --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 129362a..cfa9e60 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,8 +31,8 @@ jobs: - name: Run tests with pytest (no matplotlib, no pandas) run: | - pytest tests\test_rendering_markdown.py::test_markdown_styling - pytest tests\test_rendering_markdown.py::test_markdown_table + pytest tests/test_rendering_markdown.py::test_markdown_styling + pytest tests/test_rendering_markdown.py::test_markdown_table - name: Install matplotlib run: | @@ -40,7 +40,7 @@ jobs: - name: Run tests with pytest rendering equations (with matplotlib) run: | - pytest tests\test_rendering_markdown.py::test_markdown_equations + pytest tests/test_rendering_markdown.py::test_markdown_equations build-ubuntu: runs-on: ubuntu-latest