Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-osalazarlizano committed Jun 18, 2024
1 parent 4c7edd8 commit 34075bd
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,12 @@ jobs:
}
const paths = new Set(CHANGED_FILES.split(" ")
.map(x => x.substring(0, x.indexOf("/") + 1))
.filter(x => x.length > 0 && !x.startsWith('.')));
.map(path => path.substring(0, path.indexOf("/") + 1))
.filter(x => path.length > 0 && !path.startsWith('.')));
for (const rootPath of paths)
{
/*for (const path of getPytestPaths(rootPath))
{
console.log(path);
}*/
getPytestPaths(rootPath, path => console.log(path))
}
- name: Setup test environment
Expand Down

0 comments on commit 34075bd

Please sign in to comment.