Skip to content

Commit b863be3

Browse files
committed
actually add test
1 parent a5f2019 commit b863be3

File tree

4 files changed

+23
-0
lines changed

4 files changed

+23
-0
lines changed

atest/__init__.py

Whitespace-only changes.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*** Settings ***
2+
Library JupyterLibrary
3+
4+
*** Test Cases ***
5+
Just import
6+
Log JupyterLibrary probably imported

atest/acceptance/__init__.robot

Whitespace-only changes.

atest/run.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import sys
2+
import subprocess
3+
import os
4+
5+
here = os.path.dirname(__file__)
6+
out = os.path.join(here, "..", "_artifacts", "test_output")
7+
tests = os.path.join(here, "acceptance")
8+
9+
10+
def run_tests(*robot_args):
11+
return subprocess.check_call([
12+
"python", "-m", "robot", "-d", out, tests
13+
], cwd=here)
14+
15+
16+
if __name__ == "__main__":
17+
sys.exit(run_tests(sys.argv[1:]))

0 commit comments

Comments
 (0)