diff --git a/.github/workflows/ubuntu-tests.yml b/.github/workflows/ubuntu-tests.yml index aa37c39ad..f8069c8f5 100644 --- a/.github/workflows/ubuntu-tests.yml +++ b/.github/workflows/ubuntu-tests.yml @@ -38,5 +38,5 @@ jobs: - name: Run tests run: | - pytest --ignore=aider/tests/test_help.py - pytest aider/tests/test_help.py + pytest --ignore=tests/test_help.py + pytest tests/test_help.py diff --git a/.github/workflows/windows-tests.yml b/.github/workflows/windows-tests.yml index ee1adaeb8..1d7d465db 100644 --- a/.github/workflows/windows-tests.yml +++ b/.github/workflows/windows-tests.yml @@ -38,6 +38,6 @@ jobs: - name: Run tests run: | - pytest --ignore=aider/tests/test_help.py - pytest aider/tests/test_help.py + pytest --ignore=tests/test_help.py + pytest tests/test_help.py