Skip to content

Commit 61a712d

Browse files
committed
refactor: [#220] update cargo aliases for renamed E2E test binaries
Updated cargo aliases to match new binary names: - e2e-full -> e2e-complete (e2e-complete-workflow-tests) - e2e-provision -> e2e-infrastructure (e2e-infrastructure-lifecycle-tests) - e2e-config -> e2e-deployment (e2e-deployment-workflow-tests) This allows using convenient aliases like: - cargo e2e-complete - cargo e2e-infrastructure - cargo e2e-deployment
1 parent 1e957ba commit 61a712d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.cargo/config.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[alias]
22
lint = "run --bin linter all"
3-
e2e-full = "run --bin e2e-tests-full"
4-
e2e-provision = "run --bin e2e-provision-tests"
5-
e2e-config = "run --bin e2e-config-and-release-tests"
3+
e2e-complete = "run --bin e2e-complete-workflow-tests"
4+
e2e-infrastructure = "run --bin e2e-infrastructure-lifecycle-tests"
5+
e2e-deployment = "run --bin e2e-deployment-workflow-tests"
66
cov = "llvm-cov"
77
cov-check = "llvm-cov --all-features --workspace --fail-under-lines 70"
88
cov-lcov = "llvm-cov --lcov --output-path=./.coverage/lcov.info"

0 commit comments

Comments
 (0)