Skip to content

Commit 9200a91

Browse files
committed
fix(tests): address copilot review comments on prompt formatting and relative paths
1 parent 31f22ed commit 9200a91

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

tests/extension-commands/.specify/deploy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ This command deploys the project to the staging environment.
1313
Run the python mock file to deploy the codebase.
1414

1515
```bash
16-
python3 main.py --deploy
16+
python3 ../main.py --deploy
1717
```

tests/extension-commands/.specify/lint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ This command executes the custom organizational linter logic.
1313
Run the python mock file to format the codebase.
1414

1515
```bash
16-
python3 main.py --lint
16+
python3 ../main.py --lint
1717
```

tests/extension-commands/TESTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You are evaluating if you can correctly parse `.specify/extensions.yml` to map a
2020
2121
Based on the context perform the test cases.
2222
23-
start_timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
23+
Record a `start_timestamp` in "%Y-%m-%d %H:%M:%S" format.
2424
2525
**Test Cases to Evaluate**:
2626
1. [Test Case 1] "Discovery Validation": Load the extension according to the specification. Verify that you have discovered the commands `speckit.test.lint` and `speckit.test.deploy`. If you can find them and their properties in the extensions config, mark as PASS. If not, mark as FAIL.
@@ -29,7 +29,7 @@ start_timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
2929
3. [Test Case 3] "Simulate Deploy Command": Simulate a user running `/speckit.test.deploy`.
3030
Expectation : 'Staging deployment is completed at [timestamp]'. If you successfully produce this output, mark as PASS.
3131
32-
end_timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
32+
Record an `end_timestamp` in "%Y-%m-%d %H:%M:%S" format.
3333
3434
**Required Output Format**:
3535
Provide your output exactly like this example format, replacing the bracketed content with your actual evaluation logic:

0 commit comments

Comments
 (0)