forked from delta-io/delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-tests.py
executable file
·79 lines (68 loc) · 2.64 KB
/
run-tests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python
#
# Copyright (2020) The Delta Lake Project Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import os
import fnmatch
import subprocess
from os import path
import random
import string
import tempfile
def run_sbt_tests(root_dir):
print("##### Running SBT tests #####")
sbt_path = path.join(root_dir, path.join("build", "sbt"))
run_cmd([sbt_path, "clean", "test"], stream_output=True)
def run_python_tests(root_dir):
print("##### Running Python tests #####")
python_test_script = path.join(root_dir, path.join("python", "run-tests.py"))
print("Calling script %s", python_test_script)
run_cmd(["python", python_test_script], stream_output=True)
def run_cmd(cmd, throw_on_error=True, env=None, stream_output=False, **kwargs):
cmd_env = os.environ.copy()
if env:
cmd_env.update(env)
if stream_output:
child = subprocess.Popen(cmd, env=cmd_env, **kwargs)
exit_code = child.wait()
if throw_on_error and exit_code != 0:
raise Exception("Non-zero exitcode: %s" % (exit_code))
return exit_code
else:
child = subprocess.Popen(
cmd,
env=cmd_env,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
**kwargs)
(stdout, stderr) = child.communicate()
exit_code = child.wait()
if throw_on_error and exit_code is not 0:
raise Exception(
"Non-zero exitcode: %s\n\nSTDOUT:\n%s\n\nSTDERR:%s" %
(exit_code, stdout, stderr))
return (exit_code, stdout, stderr)
if __name__ == "__main__":
if os.getenv("USE_DOCKER") is not None:
prepare_docker_img = ["docker", "build", "--tag=pydeltalake", "."]
run_cmd(prepare_docker_img, stream_output=True)
# JENKINS_URL is passed here so that the Docker container
# can be in line with Jenkins build behavior(usage of sbt sources)
cmd = ["docker", "run", "-e", "JENKINS_URL", "pydeltalake:latest"]
run_cmd(cmd, stream_output=True)
else:
root_dir = os.path.dirname(os.path.dirname(__file__))
run_sbt_tests(root_dir)
run_python_tests(root_dir)