Skip to content
This repository was archived by the owner on Aug 15, 2019. It is now read-only.

Commit 9c91cf9

Browse files
committed
Add init helper script
1 parent 8fab165 commit 9c91cf9

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

circle.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ machine:
77
test:
88
override:
99
- bash scripts/test.sh
10+
- python3 scripts/init.py
1011
- python3 robot/ideal_api.py

scripts/init.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from robot import Robot
2+
3+
print("Initialising Robot...")
4+
5+
r = Robot()
6+
7+
print("Robot now initialised.")
8+
print("It can be accessed through the variable 'r'.")

0 commit comments

Comments
 (0)