-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (28 loc) · 726 Bytes
/
Makefile
File metadata and controls
35 lines (28 loc) · 726 Bytes
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
install:
python -m pip install --upgrade pip
pip install -r requirements.txt --upgrade
pip install -r requirements_dev.txt --upgrade
pip install -e . --upgrade
pre-commit install
conda:
conda install -c mnishida -c defaults --file conda_pkg/conda_requirements_dev.txt
conda install -c mnishida --file conda_pkg/conda_requirements.txt
conda build --numpy 1.21 conda_pkg
conda install --use-local --force-reinstall riip
pip install pytest-regressions
pip install bump2version
pip install pandas-stubs
pip install pre-commit
pre-commit install
test:
pytest
cov:
pytest --cov riip
mypy:
mypy . --ignore-missing-imports
lint:
flake8
lintd2:
flake8 --select RST
lintd:
pydocstyle --convention google riip