fix: fix test actually running (#587)

* fix: fix test actually running

* fix: fix test to not send request to openai

* fix: fix linting to remove cli files

* fix: exclude only files that breaks black
This commit is contained in:
Eduardo Chiarotti
2024-05-09 21:33:48 -03:00
committed by GitHub
parent 95d13bd033
commit 1da7473f26
4 changed files with 422 additions and 5 deletions

View File

@@ -7,4 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
- name: Install Requirements
run: |
pip install black
- name: Run Black
run: black . --exclude "cli/templates/crew.py" --extend-exclude "cli/templates/main.py"