-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
43 lines (34 loc) · 878 Bytes
/
Makefile
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
install:
python -m pip install --upgrade pip
pip install -r requirements_dev.txt --upgrade
pip install -r requirements.txt --upgrade
pip install -e .
pip install "ray[default]"
pre-commit install
conda:
conda install -c mnishida -c defaults --file conda_pkg/conda_requirements.txt
conda install -c mnishida -c defaults --file conda_pkg/conda_requirements_dev.txt
conda build -c mnishida -c defaults --numpy 1.21 conda_pkg
conda install -c mnishida -c defaults --use-local --force-reinstall pymwm
pip install "ray[default]"
pip install pytest-regressions
pip install bump2version
pip install pandas-stubs
pip install pre-commit
pre-commit install
test:
pytest
cov:
pytest --cov pymwm
mypy:
mypy . --ignore-missing-imports
lint:
flake8
pylint:
pylint pymwm
lintd2:
flake8 --select RST
lintd:
pydocstyle --convention google pymwm
doc8:
doc8 docs/