From 7ece31c08a0c3803dece16971ed5ea7ced4a2288 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Mon, 15 Jul 2024 08:40:10 +0100 Subject: [PATCH] Moved the tests directory from aider/tests/ to tests/ --- .github/workflows/ubuntu-tests.yml | 4 ++-- .github/workflows/windows-tests.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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