Skip to content

Commit

Permalink
Ruff cache moved
Browse files Browse the repository at this point in the history
  • Loading branch information
xfenix committed Dec 31, 2023
1 parent b86a13d commit f057989
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@ lint:
ruff . --no-fix
mypy .
vulture whole_app --min-confidence 100
black . --check

lint-in-docker:
docker run -t spellcheck-microservice bash -c "ruff . && mypy . && vulture whole_app --min-confidence 100 && black . --check"
docker run -t spellcheck-microservice bash -c "RUFF_CACHE_DIR=/tmp/ruff-cache ruff . --no-fix && mypy . && vulture whole_app --min-confidence 100"

run-prod:
docker run -p 10113:10113 -e SPELLCHECK_WORKERS=1 -t spellcheck-microservice:latest
Expand Down

0 comments on commit f057989

Please sign in to comment.