Skip to content

Commit

Permalink
Remove mypy and pytest caches in 'make clean'
Browse files Browse the repository at this point in the history
  • Loading branch information
bcmills committed Nov 4, 2024
1 parent 08746ec commit dc61d75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ test-examples: $(ALL_EXAMPLES) ## run example code test suite
.PHONY: $(ALL_EXAMPLES)
$(ALL_EXAMPLES): $(HATCH_BIN)
$(HATCH_CMD) run python $@
test-unit: $(VENV_TARGET) ## run unit test suite
test-unit: ${HATCH_BIN} $(VENV_TARGET) ## run unit test suite
$(HATCH_CMD) test --all --parallel --randomize
test-types:
test-types: ${HATCH_BIN} $(VENV_TARGET)
$(HATCH_CMD) run types:check

clean:
rm -rf ${VENV_DIR}
rm -rf ${VENV_DIR} .mypy_cache .pytest_cache

0 comments on commit dc61d75

Please sign in to comment.