Skip to content

Commit

Permalink
Remove verbose debug flag (-v)
Browse files Browse the repository at this point in the history
- Update `disabledTestsLinter.yml` to remove the `-v` flag
- reduce the unnecessary debug output

resolves: adoptium#5795

Signed-off-by: Anna Babu Palathingal <[email protected]>
  • Loading branch information
annaibm committed Dec 4, 2024
1 parent bfe2b3d commit df23300
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/disabledTestsLinter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
sudo apt-get install python3 python3-lxml
- name: Run exclude_parser.py on ProblemList files
run: find ./openjdk/excludes -name "ProblemList*" | python3 ./scripts/disabled_tests/exclude_parser.py -v > /dev/null
run: find ./openjdk/excludes -name "ProblemList*" | python3 ./scripts/disabled_tests/exclude_parser.py > /dev/null

- name: Run playlist_parser.py on playlist.xml files
run: find . -name "playlist.xml" | python3 ./scripts/disabled_tests/playlist_parser.py -v > /dev/null
run: find . -name "playlist.xml" | python3 ./scripts/disabled_tests/playlist_parser.py > /dev/null

0 comments on commit df23300

Please sign in to comment.