Skip to content

Commit

Permalink
Merge branch '__rultor'
Browse files Browse the repository at this point in the history
  • Loading branch information
rultor committed May 13, 2024
2 parents 88b3b4b + 70572a7 commit 0c0ed41
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions eo-runtime/src/test/java/org/eolang/SnippetTestCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -258,18 +258,12 @@ void runsTestsAfterPhiAndUnphi(final @TempDir Path temp) throws IOException {
* @param farea Farea instance
* @param target Directory to copy from
* @throws IOException If fails to copy files
* @todo #3092:30min Remove filter with "rust-tests.eo". BinarizeMojo does not add rust
* dependencies to rust-tests after phi->unphi (see:
* <a href="https://github.com/objectionary/eo/issues/3145">this</a> for details).
* When it's resolved we need to remove the filter and make sure the snippet test
* {@link SnippetTestCase#runsTestsAfterPhiAndUnphi(Path)} still works.
*/
private static void copySources(final Farea farea, final String target) throws IOException {
final Path runtime = Paths.get(System.getProperty("user.dir"))
.resolve(target);
final Collection<Path> sources = Files.walk(runtime)
.filter(src -> !src.toFile().isDirectory())
.filter(src -> !src.endsWith("rust-tests.eo"))
.collect(Collectors.toList());
for (final Path src : sources) {
farea.files()
Expand Down

1 comment on commit 0c0ed41

@0pdd
Copy link

@0pdd 0pdd commented on 0c0ed41 May 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 3092-ad9ee9a7 disappeared from eo-runtime/src/test/java/org/eolang/SnippetTestCase.java), that's why I closed #3162. Please, remember that the puzzle was not necessarily removed in this particular commit. Maybe it happened earlier, but we discovered this fact only now.

Please sign in to comment.