Skip to content

Commit

Permalink
Update test_github.sh (#2535)
Browse files Browse the repository at this point in the history
* Update test_github.sh

* Update test_github.sh

* Update ci.sh

* Update .dockerignore

* Update test_github.sh
  • Loading branch information
sobolevn authored May 2, 2024
1 parent b6f9eed commit 0f51e7b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions {{cookiecutter.project_name}}/.dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,12 @@ docker/docker-compose.prod.yml
# import-linter
.import_linter_cache/

# pytest and hypothesis
.pytest_cache/
.hypothesis/

# mypy
.mypy_cache/

# kira-release script
release.config.js
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name}}/docker/django/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fi
pyclean () {
# Cleaning cache:
find . \
| grep -E '(__pycache__|\.(mypy_)?cache|\.hypothesis|\.perm|\.static|\.py[cod]$)' \
| grep -E '(__pycache__|\.(mypy_|pytest_)?cache|\.(hypothesis|perm|static)|\.py[cod]$)' \
| xargs rm -rf \
|| true
}
Expand Down

0 comments on commit 0f51e7b

Please sign in to comment.