@@ -131,59 +131,35 @@ cwa:
131131# Usage :
132132# make ctest1 [crate=name]
133133ctest1 :
134- @clear
135- @echo " Running Test Level 1: Primary test suite..."
136- @RUSTFLAGS=" -D warnings" cargo nextest run --all-features $(PKG_FLAGS )
134+ @clear && RUSTFLAGS=" -D warnings" cargo nextest run --all-features $(PKG_FLAGS )
137135
138136# Test Level 2: Primary + Documentation tests.
139137#
140138# Usage :
141139# make ctest2 [crate=name]
142140ctest2 :
143- @clear
144- @echo " Running Test Level 2: Primary + Doc tests..."
145- @RUSTFLAGS=" -D warnings" cargo nextest run --all-features $(PKG_FLAGS ) && \
146- RUSTDOCFLAGS=" -D warnings" cargo test --doc --all-features $(PKG_FLAGS )
141+ @clear && RUSTFLAGS=" -D warnings" cargo nextest run --all-features $(PKG_FLAGS ) && RUSTDOCFLAGS=" -D warnings" cargo test --doc --all-features $(PKG_FLAGS )
147142
148143# Test Level 3: Primary + Doc + Linter.
149144#
150145# Usage :
151146# make ctest3 [crate=name]
152147ctest3 :
153- @clear
154- @echo " Running Test Level 3: All standard checks..."
155- @RUSTFLAGS=" -D warnings" cargo nextest run --all-features $(PKG_FLAGS ) && \
156- RUSTDOCFLAGS=" -D warnings" cargo test --doc --all-features $(PKG_FLAGS ) && \
157- cargo clippy --all-targets --all-features $(PKG_FLAGS ) -- -D warnings
148+ @clear && RUSTFLAGS=" -D warnings" cargo nextest run --all-features $(PKG_FLAGS ) && RUSTDOCFLAGS=" -D warnings" cargo test --doc --all-features $(PKG_FLAGS ) && cargo clippy --all-targets --all-features $(PKG_FLAGS ) -- -D warnings
158149
159150# Test Level 4: All standard + Heavy testing (deps, audit).
160151#
161152# Usage :
162153# make ctest4 [crate=name]
163154ctest4 :
164- @clear
165- @echo " Running Test Level 4: All checks + Heavy testing..."
166- @RUSTFLAGS=" -D warnings" cargo nextest run --all-features $(PKG_FLAGS ) && \
167- RUSTDOCFLAGS=" -D warnings" cargo test --doc --all-features $(PKG_FLAGS ) && \
168- cargo clippy --all-targets --all-features $(PKG_FLAGS ) -- -D warnings && \
169- cargo +nightly udeps --all-targets --all-features $(PKG_FLAGS ) && \
170- cargo +nightly audit --all-features $(PKG_FLAGS ) && \
171- $(MAKE ) --no-print-directory clean-cache-files
155+ @clear && RUSTFLAGS=" -D warnings" cargo nextest run --all-features $(PKG_FLAGS ) && RUSTDOCFLAGS=" -D warnings" cargo test --doc --all-features $(PKG_FLAGS ) && cargo clippy --all-targets --all-features $(PKG_FLAGS ) -- -D warnings && cargo +nightly udeps --all-targets --all-features $(PKG_FLAGS ) && cargo +nightly audit
172156
173157# Test Level 5: Full heavy testing with mutation tests.
174158#
175159# Usage :
176160# make ctest5 [crate=name]
177161ctest5 :
178- @clear
179- @echo " Running Test Level 5: Full heavy testing with mutations..."
180- @RUSTFLAGS=" -D warnings" cargo nextest run --all-features $(PKG_FLAGS ) && \
181- RUSTDOCFLAGS=" -D warnings" cargo test --doc --all-features $(PKG_FLAGS ) && \
182- cargo clippy --all-targets --all-features $(PKG_FLAGS ) -- -D warnings && \
183- willbe .test dry:0 && \
184- cargo +nightly udeps --all-targets --all-features $(PKG_FLAGS ) && \
185- cargo +nightly audit --all-features $(PKG_FLAGS ) && \
186- $(MAKE ) --no-print-directory clean-cache-files
162+ @clear && RUSTFLAGS=" -D warnings" cargo nextest run --all-features $(PKG_FLAGS ) && RUSTDOCFLAGS=" -D warnings" cargo test --doc --all-features $(PKG_FLAGS ) && cargo clippy --all-targets --all-features $(PKG_FLAGS ) -- -D warnings && willbe .test dry:0 && cargo +nightly udeps --all-targets --all-features $(PKG_FLAGS ) && cargo +nightly audit
187163
188164#
189165# === Watch Commands ===
0 commit comments