forked from ncats/hcase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
23 lines (16 loc) · 664 Bytes
/
Makefile
File metadata and controls
23 lines (16 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
images:
@echo "Building images..."
@docker build -t hcase -f docker/Dockerfile.hcase .
jupyter:
docker run -it --rm \
-v $(PWD):/app \
-p 8874:8874 hcase \
jupyter-lab --allow-root --port=8874 --ip 0.0.0.0 --no-browser --notebook-dir=/app
ruff:
docker run -it --rm -v $(PWD):/app --env-file .env selective-inference-dev ruff .
isort:
docker run -it --rm -v $(PWD):/app --env-file .env selective-inference-dev isort .
mypy:
docker run -it --rm -v $(PWD):/app --env-file .env --workdir /app selective-inference-dev mypy src
pytest:
docker run -it --rm -v $(PWD):/app --env-file .env selective-inference-dev ptw --runner python run_pytest.py .