From d8f97970d6069989621b2f1486dda45c589088d1 Mon Sep 17 00:00:00 2001 From: Sergey Fedoseev Date: Sun, 23 Feb 2025 20:33:29 +0100 Subject: [PATCH] try to set working dir --- .github/workflows/py-ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/py-ci.yml b/.github/workflows/py-ci.yml index 58977b49206..d143aa65021 100644 --- a/.github/workflows/py-ci.yml +++ b/.github/workflows/py-ci.yml @@ -66,6 +66,9 @@ jobs: runs-on: ubuntu-latest env: QUILT_DISABLE_USAGE_METRICS: true + defaults: + run: + working-directory: testdocs steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 @@ -74,11 +77,11 @@ jobs: - name: install poetry run: python -m pip install poetry - name: install deps - run: cd testdocs && poetry install + run: poetry install - name: install current version of quilt run: poetry run pip install api/python - name: test codeblocks - run: cd testdocs && poetry run pytest --codeblocks ../docs + run: poetry run pytest --codeblocks ../docs test-client: strategy: