Skip to content

Commit

Permalink
add missing --no-default-ignore cli flag in test workflow (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Apr 1, 2024
1 parent 67e910a commit 46f47c4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### Fixed

- Added missing `--no-default-ignore` to static collection step in `test.yml`. By default Vite puts the `manifest.json` in a `.vite` directory, so we need to make sure this is not ignored when collecting static files.

## [2024.8]

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/django_twc_project/.github/workflows/test.yml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Build staticfiles
run: |
python manage.py tailwind build --skip-checks
python manage.py collectstatic --no-input --skip-checks
python manage.py collectstatic --no-input --skip-checks --no-default-ignore

# https://hynek.me/articles/ditch-codecov-python/
- name: Run tests
Expand Down

0 comments on commit 46f47c4

Please sign in to comment.