Skip to content

Commit

Permalink
Update desktop_tester.py
Browse files Browse the repository at this point in the history
  • Loading branch information
a-maurice committed Sep 26, 2024
1 parent 3402c57 commit d5131a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/gha/desktop_tester.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ def main(argv):
for file_dir, _, file_names in os.walk(testapp_dir):
for file_name in file_names:
# match Testapp names, e.g. "Firebase Analytics Unity Testapp"
if testapp_name in file_name.lower() and file_name.endswith("_s.debug"):
# Ignore files ending with _s.debug, since Linux generates debug files
if testapp_name in file_name.lower() and not file_name.endswith("_s.debug"):
testapps.append(os.path.join(file_dir, file_name))

if not testapps:
Expand Down

0 comments on commit d5131a0

Please sign in to comment.