mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 08:14:59 +00:00
Configured GitHub Actions workflows to use pytest instead of unittest for running tests on Ubuntu and Windows.
This commit is contained in:
parent
b8c4d1dcb9
commit
ce2673e6eb
2 changed files with 4 additions and 4 deletions
4
.github/workflows/ubuntu-tests.yml
vendored
4
.github/workflows/ubuntu-tests.yml
vendored
|
@ -33,8 +33,8 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install .
|
||||
pip install .[test]
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
python -m unittest discover -s aider/tests
|
||||
pytest aider/tests
|
||||
|
|
4
.github/workflows/windows-tests.yml
vendored
4
.github/workflows/windows-tests.yml
vendored
|
@ -33,8 +33,8 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install .
|
||||
pip install .[test]
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
python -m unittest discover -s aider/tests
|
||||
pytest aider/tests
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue