-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
51 lines (37 loc) · 1.09 KB
/
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
46
47
48
49
50
51
# SPDX-FileCopyrightText: 2024 Softbear, Inc.
# SPDX-License-Identifier: AGPL-3.0-or-later
.PHONY: all doc rustup test
all:
cargo build
doc:
cargo doc
rustup:
rustup override set stable
test:
cargo test -- --nocapture
test_dns:
cargo test aws_dns_read_tests -- --nocapture
# cargo test aws_dns_update_tests -- --nocapture
# cargo test cloud_dns_tests -- --nocapture
# cargo test linode_dns_tests -- --nocapture
test_hosts:
cargo test linode_host_tests -- --nocapture
test_jwt:
# cargo test jwt_identity_tests -- --nocapture
cargo test jwt_signing_tests -- --nocapture
test_logger:
cargo test logger_tests -- --nocapture
test_markdown:
cargo test --features yew_markdown yew_markdown_tests -- --nocapture
test_stripe:
cargo test customer_tests -- --nocapture
#cargo test product_tests -- --nocapture
#cargo test price_tests -- --nocapture
test_time:
cargo test chrono_tests -- --nocapture
cargo test time_casts_01 -- --nocapture
cargo test time_tests_now -- --nocapture
test_translate:
cargo test translate_tests -- --nocapture
test_videos:
cargo test cloud_video_tests -- --nocapture