generated from nogibjj/Mobasserul_Haque_MiniProject6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
45 lines (32 loc) · 828 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
44
45
rust-version:
@echo "Rust command-line utility versions:"
rustc --version #rust compiler
cargo --version #rust package manager
rustfmt --version #rust code formatter
rustup --version #rust toolchain manager
clippy-driver --version #rust linter
format:
cargo fmt --quiet
install:
# Install if needed
#@echo "Updating rust toolchain"
#rustup update stable
#rustup default stable
lint:
cargo clippy --quiet
test:
cargo test --quiet
run:
cargo run
release:
cargo build --release
all: format lint test run
python_install:
pip install --upgrade pip && pip install -r requirements.txt
python_format:
black *.py
python_lint:
pylint --disable=R,C --ignore-patterns=test_.*?py *.py
python_test:
python -m pytest -cov=main test_main.py
python_all: install python_format python_lint python_test