Skip to content
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix appveyor.yml
  • Loading branch information
dongjoon-hyun committed Nov 16, 2019
commit 0a552739c091b2f3a3c73c2f4c44c85e6393df2c
4 changes: 2 additions & 2 deletions dev/run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ def determine_modules_for_files(filenames):
['pyspark-core', 'sql']
>>> [x.name for x in determine_modules_for_files(["file_not_matched_by_any_subproject"])]
['root']
>>> [x.name for x in determine_modules_for_files([".github/workflows/master.yml", "appveyor.xml"])]
>>> [x.name for x in determine_modules_for_files([".github/workflows/master.yml", "appveyor.yml"])]
[]
"""
changed_modules = set()
for filename in filenames:
if filename in (".github/workflows/master.yml", "appveyor.xml"):
if filename in (".github/workflows/master.yml", "appveyor.yml"):
continue
matched_at_least_one_module = False
for module in modules.all_modules:
Expand Down