Skip to content

Commit 63a6d66

Browse files
committed
Have continual output for CI.
1 parent 49efe60 commit 63a6d66

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

main.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import itertools
2+
import os
23
from datetime import date, datetime, timedelta
34

45
import devopsdays
@@ -73,6 +74,8 @@ def sync_record(existing, fields):
7374
print(f'Updating {existing}')
7475
existing.update(fields)
7576
existing.save()
77+
elif os.environ.get('CI'):
78+
print(f'Scraped {existing}')
7679
return existing
7780

7881

0 commit comments

Comments
 (0)