mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 00:50:10 +01:00
lava-job-submitter has been moved to a new repository: https://gitlab.freedesktop.org/gfx-ci/lava-job-submitter Remove the LAVA-related code from Mesa, since we now use the containers built in that repository. These containers already include lava-job-submitter and run the relevant tests there. Signed-off-by: Valentine Burley <valentine.burley@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37510>
56 lines
1.7 KiB
Bash
Executable file
56 lines
1.7 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: MIT
|
|
# © Collabora Limited
|
|
# Author: Guilherme Gallo <guilherme.gallo@collabora.com>
|
|
|
|
# This script runs unit/integration tests for CI tools
|
|
# shellcheck disable=SC1091 # The relative paths in this file only become valid at runtime.
|
|
# shellcheck disable=SC2086 # quoting PYTEST_VERBOSE makes us pass an empty path
|
|
|
|
set -eu
|
|
|
|
PYTHON_BIN="python3.13"
|
|
|
|
if [ -z "${SCRIPTS_DIR:-}" ]; then
|
|
SCRIPTS_DIR="$(dirname "${0}")"
|
|
fi
|
|
|
|
if [ -z "${CI_JOB_STARTED_AT:-}" ]; then
|
|
CI_JOB_STARTED_AT=$(date -u +%Y-%m-%dT%H:%M:%SZ) # isoformat
|
|
fi
|
|
|
|
source "${SCRIPTS_DIR}/setup-test-env.sh"
|
|
|
|
if [ -z "${CI_PROJECT_DIR:-}" ]; then
|
|
CI_PROJECT_DIR="$(dirname "${0}")/../"
|
|
fi
|
|
|
|
# If running outside of the debian/arm64_build container,
|
|
# run in a virtual environment for isolation
|
|
# e.g. USE_VENV=true ./.gitlab-ci/run-pytest.sh
|
|
if [ "${USE_VENV:-}" == true ]; then
|
|
echo "Setting up virtual environment for local testing."
|
|
MESA_PYTEST_VENV="${CI_PROJECT_DIR}/.venv-pytest"
|
|
${PYTHON_BIN} -m venv "${MESA_PYTEST_VENV}"
|
|
source "${MESA_PYTEST_VENV}"/bin/activate
|
|
${PYTHON_BIN} -m pip install --break-system-packages -r "${CI_PROJECT_DIR}/bin/ci/test/requirements.txt"
|
|
fi
|
|
|
|
SCRIPT_TEST_DIR=${CI_PROJECT_DIR}/bin/ci
|
|
|
|
uncollapsed_section_start pytest "Running pytest"
|
|
|
|
PYTHONPATH="${SCRIPT_TEST_DIR}:${PYTHONPATH:-}" ${PYTHON_BIN} -m \
|
|
pytest "${SCRIPT_TEST_DIR}" \
|
|
-W ignore::DeprecationWarning \
|
|
--junitxml=artifacts/ci_scripts_report.xml \
|
|
-m 'not slow' \
|
|
${PYTEST_VERBOSE:-}
|
|
|
|
section_end pytest
|
|
|
|
section_start flake8 "flake8"
|
|
${PYTHON_BIN} -m flake8 \
|
|
--config "${CI_PROJECT_DIR}/.gitlab-ci/.flake8" \
|
|
"${SCRIPT_TEST_DIR}"
|
|
section_end flake8
|