aboutsummaryrefslogtreecommitdiffstats
path: root/python-packages/test
blob: 5bf37cca3f171cc17da7b959edc7b86b8a9245f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

"""Script to run tests against local copy of all components."""

from os import path
import subprocess

subprocess.check_call(
    (
        f"{path.join('.', 'cmd_pkgs_in_dep_order.py')}"
        + f" {path.join('.', 'setup.py')} test"
    ).split()
)