forked from princeton-nlp/SWE-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from replayio/dominik/pro-864-6a-test-initial-…
…runtime-data-hypotheses Automatically collect call graph from `tdd_repro` (behind a comment)
- Loading branch information
Showing
13 changed files
with
911 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
{ | ||
"python.terminal.activateEnvironment": true, | ||
"python.defaultInterpreterPath": "<workspaceFolder>/.venv/bin/python", | ||
"peacock.color": "#15141f", | ||
"peacock.remoteColor": "#15141f", | ||
"peacock.color": "#2b283d", | ||
"peacock.remoteColor": "#2b283d", | ||
"workbench.colorCustomizations": { | ||
"activityBar.activeBackground": "#2a283e", | ||
"activityBar.background": "#2a283e", | ||
"activityBar.activeBackground": "#413c5c", | ||
"activityBar.background": "#413c5c", | ||
"activityBar.foreground": "#e7e7e7", | ||
"activityBar.inactiveForeground": "#e7e7e799", | ||
"activityBarBadge.background": "#744f4b", | ||
"activityBarBadge.background": "#000000", | ||
"activityBarBadge.foreground": "#e7e7e7", | ||
"commandCenter.border": "#e7e7e799", | ||
"sash.hoverBorder": "#2a283e", | ||
"statusBar.background": "#15141f", | ||
"sash.hoverBorder": "#413c5c", | ||
"statusBar.background": "#2b283d", | ||
"statusBar.foreground": "#e7e7e7", | ||
"statusBarItem.hoverBackground": "#2a283e", | ||
"statusBarItem.remoteBackground": "#15141f", | ||
"statusBarItem.hoverBackground": "#413c5c", | ||
"statusBarItem.remoteBackground": "#2b283d", | ||
"statusBarItem.remoteForeground": "#e7e7e7", | ||
"titleBar.activeBackground": "#15141f", | ||
"titleBar.activeBackground": "#2b283d", | ||
"titleBar.activeForeground": "#e7e7e7", | ||
"titleBar.inactiveBackground": "#15141f99", | ||
"titleBar.inactiveBackground": "#2b283d99", | ||
"titleBar.inactiveForeground": "#e7e7e799" | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
## Requirements | ||
# Requirements | ||
|
||
* You are provided `tdd_*` tools to reproduce the issue with one or more golden tests and also check for regressions. | ||
* Always start your investigations from the failing test. | ||
* When deciding to investigate some part of the code, EXPLAIN CLEARLY why you think that this is the next step to take. | ||
* Don't submit until the reproduction command proves your fix. | ||
|
||
## HOW TO BEGIN | ||
To start things off, run the 'tdd_repro' command to reproduce the issue. | ||
* IMPORTANT: Always FIRST RUN the `tdd_repro` command to reproduce the issue. | ||
* This provides you with in-depth test failure and runtime information. | ||
* This includes `CALL_GRAPH_ON_EXCEPTION`: It contains the entire call hierarchy of all functions from that test. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.