Skip to content

Commit

Permalink
Use --no-ansi option in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
syucream committed Aug 26, 2023
1 parent e7bc32d commit 9366f55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-apiv2-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
source virtualenv/bin/activate
pip install pip --upgrade
pip install poetry
poetry install
poetry install --no-ansi
# NOTE why is it needed? if missing, spectacular fails because of "no module named custom_view.api_v2"
- name: dummy custom_view
run: |
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ skipsdist = TRUE
[testenv:py38]
commands =
pip install poetry
poetry install
poetry install --no-ansi
python manage.py makemigrations
python manage.py migrate
python manage.py collectstatic
Expand All @@ -22,7 +22,7 @@ whitelist_externals = rm
[testenv:staticchecks]
commands =
pip install poetry --only dev
poetry install
poetry install --no-ansi
black --check .
mypy ./
ruff check .

0 comments on commit 9366f55

Please sign in to comment.