mirror of
https://github.com/go-gitea/gitea.git
synced 2026-02-22 15:25:05 +01:00
Move ./ prefix for EXECUTABLE into test-e2e.sh
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
61b75540a5
commit
d91a8d886b
2
Makefile
2
Makefile
@ -556,7 +556,7 @@ test-mssql-migration: migrations.mssql.test migrations.individual.mssql.test
|
||||
.PHONY: test-e2e
|
||||
test-e2e: deps-frontend
|
||||
@$(NODE_VARS) pnpm exec playwright install --with-deps chromium $(PLAYWRIGHT_FLAGS)
|
||||
EXECUTABLE=./$(EXECUTABLE) ./tools/test-e2e.sh $(E2E_FLAGS)
|
||||
EXECUTABLE=$(EXECUTABLE) ./tools/test-e2e.sh $(E2E_FLAGS)
|
||||
|
||||
.PHONY: bench-sqlite
|
||||
bench-sqlite: integrations.sqlite.test generate-ini-sqlite
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
||||
EXECUTABLE="./${EXECUTABLE}"
|
||||
|
||||
# Determine the Gitea server URL, either from E2E_URL env var or from custom/conf/app.ini
|
||||
if [ -z "${E2E_URL:-}" ]; then
|
||||
INI_FILE="custom/conf/app.ini"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user