/
Art86
/
DefectDojo-DevSecOps
Обзор
Документация
Войти
/
Art86
/
DefectDojo-DevSecOps
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
run-integration-test-dev.sh
16 строк
503 B
valentijnscholten
feat: run single integration tests from dev mode (#14486)
12 мар 2026, 04:21
Не верифицирован
12 мар 2026, 04:21
2051e7f
Код
Авторство
О чём код?
#!/bin/bash # Run a single integration test against the running dev stack. # Requires dev mode to be active (./docker/setEnv.sh dev && docker compose up). # # Usage: # ./run-integration-test-dev.sh tests/finding_test.py # ./run-integration-test-dev.sh tests/risk_acceptance_test.py set -e TEST_FILE="${1:?Usage: $0 <test-file>}" docker compose --profile integration run --rm --no-deps \ -e "DD_INTEGRATION_TEST_FILENAME=${TEST_FILE}" \ -e "LOG_LEVEL=${LOG_LEVEL:-INFO}" \ integration-tests