Skip to content

Commit cff50ad

Browse files
committed
docs: fix incorrect e2e test binary references from e2e-tests to e2e-tests-full
1 parent 7dcb7ab commit cff50ad

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

.github/copilot-instructions.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ This is a deployment infrastructure proof-of-concept for the Torrust ecosystem.
4444
3. **Before committing**: Always run these verifications - all must pass before staging files or creating commits, regardless of the tool or method used:
4545

4646
```bash
47-
cargo machete # Run cargo machete (MANDATORY - no unused dependencies)
48-
cargo run --bin linter all # Run linters (comprehensive - stable & nightly toolchains)
49-
cargo test # Run tests
50-
cargo run --bin e2e-tests # Run e2e tests
47+
cargo machete # Run cargo machete (MANDATORY - no unused dependencies)
48+
cargo run --bin linter all # Run linters (comprehensive - stable & nightly toolchains)
49+
cargo test # Run tests
50+
cargo run --bin e2e-tests-full # Run comprehensive e2e tests
5151
```
5252

5353
This applies to **any** method of committing:
@@ -67,8 +67,8 @@ This is a deployment infrastructure proof-of-concept for the Torrust ecosystem.
6767
- **Build**: `cargo build`
6868
- **Test**: `cargo test`
6969
- **Unit Tests**: When writing unit tests, follow conventions described in [`docs/contributing/testing.md`](../docs/contributing/testing.md)
70-
- **E2E Tests**: `cargo run --bin e2e-tests` (unified) or individual tests:
71-
- `cargo run --bin e2e-provision-tests` - Infrastructure provisioning
72-
- `cargo run --bin e2e-config-tests` - Configuration testing
70+
- **E2E Tests**: `cargo run --bin e2e-tests-full` (comprehensive - all tests) or individual tests:
71+
- `cargo run --bin e2e-provision-tests` - Infrastructure provisioning tests
72+
- `cargo run --bin e2e-config-tests` - Configuration validation tests
7373

7474
Follow the project conventions and ensure all checks pass.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,17 +115,17 @@ cargo run --bin linter shellcheck # Shell script linting
115115
Use the E2E tests binary to run automated infrastructure tests:
116116

117117
```bash
118-
# Run the E2E tests
119-
cargo run --bin e2e-tests
118+
# Run the comprehensive E2E tests
119+
cargo run --bin e2e-tests-full
120120

121121
# Keep the test environment after completion
122-
cargo run --bin e2e-tests -- --keep
122+
cargo run --bin e2e-tests-full -- --keep
123123

124124
# Use custom templates directory
125-
cargo run --bin e2e-tests -- --templates-dir ./custom/templates
125+
cargo run --bin e2e-tests-full -- --templates-dir ./custom/templates
126126

127127
# See all available options
128-
cargo run --bin e2e-tests -- --help
128+
cargo run --bin e2e-tests-full -- --help
129129
```
130130

131131
### Manual Deployment Steps

docs/contributing/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ cargo run --bin linter all
3737
3838
# 4. Run tests
3939
cargo test
40-
cargo run --bin e2e-tests
40+
cargo run --bin e2e-tests-full
4141
4242
# 5. Commit with conventional format (include issue number)
4343
git add .

docs/contributing/commit-process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ cargo run --bin linter shellcheck # Shell scripts
103103
cargo test
104104

105105
# Run E2E tests (if applicable to your changes)
106-
cargo run --bin e2e-tests
106+
cargo run --bin e2e-tests-full
107107
```
108108

109109
## 📋 Commit Quality Guidelines

docs/contributing/debugging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The project uses tracing for logging. You can control the logging level using th
1010

1111
```bash
1212
# Run with debug level logging (recommended for debugging)
13-
RUST_LOG=debug cargo run --bin e2e-tests
13+
RUST_LOG=debug cargo run --bin e2e-tests-full
1414
```
1515

1616
## 📄 Capturing Output for Analysis
@@ -19,7 +19,7 @@ Since e2e test output can be very long, use `tee` to see output in real-time whi
1919

2020
```bash
2121
# See output and save to file simultaneously
22-
RUST_LOG=debug cargo run --bin e2e-tests 2>&1 | tee debug-output.log
22+
RUST_LOG=debug cargo run --bin e2e-tests-full 2>&1 | tee debug-output.log
2323
```
2424

2525
You can then search the captured output for specific patterns:

docs/deployment-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ torrust-deploy status # List all environments (future)
7474

7575
```bash
7676
# Simulate current working functionality through E2E tests
77-
cargo run --bin e2e-tests
77+
cargo run --bin e2e-tests-full
7878

7979
# This runs equivalent to:
8080
# provision: Creates LXD container with OpenTofu

docs/refactors/domain-driven-module-organization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ Once this complete DDD layer foundation is established, we can:
271271
- [x] Run `cargo build` and fix compilation errors
272272
- [x] Run `cargo test` and fix test issues (including doc tests)
273273
- [x] Run `cargo run --bin linter all` and fix linting issues
274-
- [x] Run `cargo run --bin e2e-tests` for integration verification
274+
- [x] Run `cargo run --bin e2e-tests-full` for integration verification
275275

276276
### Future Phases (Ready for Implementation)
277277

docs/refactors/e2e-config-tests-cleanup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ cargo run --bin linter all
272272

273273
# Run tests
274274
cargo test
275-
cargo run --bin e2e-tests
275+
cargo run --bin e2e-tests-full
276276

277277
# Check for unused dependencies
278278
cargo machete
@@ -284,7 +284,7 @@ cargo machete
284284
# Same commands as pre-refactor
285285
cargo run --bin linter all
286286
cargo test
287-
cargo run --bin e2e-tests
287+
cargo run --bin e2e-tests-full
288288
cargo machete
289289

290290
# Additional checks

0 commit comments

Comments
 (0)