forked from SWE-bench/SWE-bench
-
Notifications
You must be signed in to change notification settings - Fork 13
Remove problematic content slicing in test output parsing #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ryanhoangt
wants to merge
48
commits into
All-Hands-AI:main
Choose a base branch
from
ryanhoangt:fix-modal-patch-eval
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or 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
Some of the repo_setup.sh scripts leave the working tree in a dirty state which can make it difficult to generate a patch that applies cleanly. This change commits any outstanding changges such that any patch generated with `git diff` will cleanly apply to a newly launched container during the evaluation step.
* Simplify installation guidelines for inference submodule * Fixes SWE-bench#368 * Update version
* add docs * Add leaderboard * Remove unused import * Update docs * Update version * Update: docs
* Support multilingual evaluation * CI: Fix documentation building vs deploying * Minor fixes * Remove some redundancy * Update dataset ref --------- Co-authored-by: Kilian Lieret <kilian.lieret@posteo.de> Co-authored-by: John Yang <byjohnyang@gmail.com>
…re are subsequent successful futures. (SWE-bench#370)
…h#358) * fix: preserve all issue references with same keyword in PRs * Modified extract_resolved_issues to use a set instead of list to store references
Co-authored-by: John Yang <byjohnyang@gmail.com>
…t.py SWE-bench#368 (SWE-bench#369) * fix prompt_col from text_inputs to text * update log --------- Co-authored-by: changqingai <changqingai@tencent.com>
Match the documentation for installing additional dependencies with the contents of `pyproject.toml`
This action fails if more than 1 is running at the same time (which happens if you merge multiple PRs in quick succession). Fix is by disabling concurrency, so they just queue up.
SWE-bench#417) * fix(build): fix python base images requirement types-setuptools incorrect version when replacing * Update clean_requirements and clean_environment_yml patterns to remove version specs safely --------- Co-authored-by: baixuran <baixuran@bytedance.com> Co-authored-by: carlose <cjsaltlake@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Reference Issues/PRs
Fix SWE-bench#377
What does this implement/fix? Explain your changes.
When running patch eval on Modal, I see that for some instances, the content of test output files being captured are out of order, which causes the test summary to fall outside the
>>>>> Start Test Output
and>>>>> End Test Output
markers. I attached a sample log file below.test_output_astropy__astropy-12907.txt
This PR removes the content slicing line and uses the whole file content for parsing.
Any other comments?
🧡 Thanks for contributing!