Mod 7 weekday arg in symbolication jobs (#357)

This commit is contained in:
Ben Wu 2020-12-21 15:21:49 -05:00 коммит произвёл GitHub
Родитель c183d901e8
Коммит 3e9cfbfabb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -34,7 +34,7 @@ def parse_args():
args = parse_args()
if args.date.isoweekday() not in args.run_on_days:
if args.date.isoweekday() % 7 not in args.run_on_days:
print(
f"Skipping because run date day of week"
f" {args.date} is not in {args.run_on_days}"

Просмотреть файл

@ -53,7 +53,7 @@ def parse_args():
args = parse_args()
if args.date.isoweekday() not in args.run_on_days:
if args.date.isoweekday() % 7 not in args.run_on_days:
print(
f"Skipping because run date day of week"
f" {args.date} is not in {args.run_on_days}"