-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
46 lines (36 loc) · 1.32 KB
/
Copy pathMakefile
File metadata and controls
46 lines (36 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
SHELL := /bin/bash
help: ## Show help
@grep -E '^[.a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
clean: ## Clean autogenerated files
rm -rf dist
find . -type f -name "*.DS_Store" -ls -delete
find . | grep -E "(__pycache__|\.pyc|\.pyo)" | xargs rm -rf
find . | grep -E ".pytest_cache" | xargs rm -rf
find . -type f -name "eval.log" -ls -delete
find . -type f -name "train.log" -ls -delete
find . | grep -E ".pytype" | xargs rm -rf
find . | grep -E ".ipynb_checkpoints" | xargs rm -rf
find . | grep -E "__MACOSX" | xargs rm -rf
find data -type f -name "*.tar" -ls -delete
find data -type f -name "*.tar.gz" -ls -delete
find data -type f -name "*.tgz" -ls -delete
find data -type f -name "*.zip" -ls -delete
rm -f .coverage
clean-logs: ## Clean logs
rm -rf logs/**
format: ## Run pre-commit hooks
pre-commit run -a
install: ## Install dependencies
if [ ! -d .venv ]; then python -m venv .venv; fi
source .venv/bin/activate && \
pip install --upgrade pip && \
pip install flit && \
flit install -s --only-deps --env && \
deactivate;
sync: ## Merge changes from main branch to your current branch
git pull
git pull origin main
test: ## Run not slow tests
pytest -k "not slow" -k "not train"
test-full: ## Run all tests
pytest -k "not train"