Skip to content

Commit

Permalink
ci: option --no-ansi added to ci steps to bypass pypa/setuptools#4519
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosschroh committed Jul 29, 2024
1 parent 921a05a commit f620f29
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
python -m pip install -U pip poetry
poetry --version
poetry config --local virtualenvs.in-project true
poetry install --only docs
poetry install --only docs --no-ansi
- name: Build docs
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
python -m pip install -U pip poetry
poetry --version
poetry config --local virtualenvs.in-project true
poetry install --only docs
poetry install --only docs --no-ansi
- name: Build docs
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
python -m pip install -U pip poetry
poetry --version
poetry config --local virtualenvs.in-project true
poetry install --extras "pydantic faust faker"
poetry install --all-extras --no-ansi
- name: Test Documentation
run: ./scripts/test-documentation
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
python -m pip install -U pip poetry
poetry --version
poetry config --local virtualenvs.in-project true
poetry install --only ci-publish
poetry install --only ci-publish --no-ansi
- name: Publish
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
python -m pip install -U pip poetry
poetry --version
poetry config --local virtualenvs.in-project true
poetry install --extras "pydantic faust faker"
poetry install --all-extras --no-ansi
- name: Test
run: ./scripts/test
Expand Down

0 comments on commit f620f29

Please sign in to comment.