Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,7 @@ jobs:
run: |
git config --global user.email "example@example.com"
git config --global user.name "Example Example"
make test
# TODO: reinstate `make test` and remove the other `make` calls
# make test
make -C tests/resolve-adjacent-conflicts-test
make -C tests/resolve-import-conflicts-test
Comment thread
mernst marked this conversation as resolved.
Outdated
14 changes: 0 additions & 14 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,3 @@

tests/**/Merged*.diff
tests/**/Merged*.java
tests/lint-diff-test/guessstrip-lint-pruned.txt
tests/lint-diff-test/reldir-lint-pruned.txt
tests/lint-diff-test/words-lint.txt
tests/lint-diff-test/words1.txt
tests/lint-diff-test/words12-diff.txt
tests/lint-diff-test/words2-lint-pruned.txt
tests/lint-diff-test/words2-lint-pruned.txt-goal
tests/lint-diff-test/words2-lint-pruned.txt-goal-nofilename
tests/lint-diff-test/words2-lint-pruned.txt-nofilename
tests/lint-diff-test/words2-lint.txt
tests/lint-diff-test/words2.txt
tests/**/Merged*.java
tests/**/Merged*.diff
tests/sort-compiler-output-test/errors1-sorted.actual
2 changes: 1 addition & 1 deletion resolve-conflicts.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def main() -> None:
i += num_lines

tmp.close()
shutil.copy(tmp.name, filename)
shutil.copyfile(tmp.name, filename)
Path(tmp.name).unlink()

if conflicts_remain:
Expand Down