Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NeosZhang committed Apr 15, 2024
1 parent eaaa3c4 commit a42c1d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/filter_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def get_run_result(pr_number):
response = requests.get(api_url, headers=headers)
if response.status_code == 200:
pr_files = response.json()
if "diopi_configs.py" or "customized_test.py" in str(pr_files):
if "diopi_configs.py" in str(pr_files) or "customized_test.py" in str(pr_files):
run_result['GENDATA'] = True
norunpaths = ["impl/camb_pytorch","impl/cuda"]
for file in pr_files:
Expand Down

0 comments on commit a42c1d6

Please sign in to comment.