blob: cd3be9a61fcdd26dc8dcad450537b31f651289e0 [file] [log] [blame] [edit]
#!/bin/bash
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Run tests for moblab test results uploader.
set -eu
readonly home_dir=$(dirname -- "$(readlink -e -- "$0")")
readonly moblab_common_dir=$(cd "${home_dir}"/..; pwd)
export PYTHONPATH="${moblab_common_dir}":"${home_dir}"
cd "${home_dir}"
exec python3 -m pytest tests/ "$@"