diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2020-04-26 16:57:49 +0200 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2020-04-26 21:23:53 +0200 |
commit | c4ab4f57e23eed06faeac8d4fa9ffb9ce5d47e48 (patch) | |
tree | 941323770ee9f09b561631170a33bd4547953378 /tools/functional_tests.sh | |
parent | 91c1c27956a51e2e12e3104c30988696711230ff (diff) | |
download | gitlab-test/pytest-cli-tests.tar.gz |
test(cli): convert shell tests to pytest test casestest/pytest-cli-tests
Diffstat (limited to 'tools/functional_tests.sh')
-rwxr-xr-x | tools/functional_tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/functional_tests.sh b/tools/functional_tests.sh index 4123d87..b86be3a 100755 --- a/tools/functional_tests.sh +++ b/tools/functional_tests.sh @@ -18,4 +18,4 @@ setenv_script=$(dirname "$0")/build_test_env.sh || exit 1 BUILD_TEST_ENV_AUTO_CLEANUP=true . "$setenv_script" "$@" || exit 1 -. $(dirname "$0")/cli_test_v${API_VER}.sh +pytest "$(dirname "$0")/functional/test_cli_v4.py" |