Skip to content

Commit 30e2d3d

Browse files
author
Eric Kolve
committed
emit
2 parents d33d77b + 37731d1 commit 30e2d3d

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ install:
55
- pip install requests invoke
66
cache: pip
77
script:
8-
- true
8+
- python emit.py
99
git:
1010
depth: 3
1111
deploy:

emit.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env python
2+
3+
import time
4+
import sys
5+
6+
for i in range(3):
7+
print('.', end='')
8+
sys.stdout.flush()
9+
time.sleep(540)
10+

0 commit comments

Comments
 (0)