From f0044cd188ff37c4fe420ca0622e0ed94d3965e6 Mon Sep 17 00:00:00 2001 From: Roman Meshko Date: Wed, 6 May 2026 14:53:58 +0300 Subject: [PATCH] Fixed permissions --- .woodpecker/01-test.yml | 1 + e2e/run_test.sh | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.woodpecker/01-test.yml b/.woodpecker/01-test.yml index 3f5878d..513e2b7 100644 --- a/.woodpecker/01-test.yml +++ b/.woodpecker/01-test.yml @@ -21,6 +21,7 @@ steps: commands: - cd e2e - mkdir -p fixtures results logs + - chmod 777 results logs - if [ -d fixtures/classes.json ]; then rm -rf fixtures/classes.json; fi - if [ ! -f fixtures/classes.json ] && [ -f ../classes.json ]; then cp ../classes.json fixtures/classes.json; fi - test -f fixtures/classes.json diff --git a/e2e/run_test.sh b/e2e/run_test.sh index 9d312d2..b3e1c6f 100755 --- a/e2e/run_test.sh +++ b/e2e/run_test.sh @@ -21,6 +21,9 @@ esac COMPOSE="docker compose -f docker-compose.test.yml --profile $PROFILE" LOG_TAIL="${E2E_LOG_TAIL:-100}" +mkdir -p results logs +chmod 777 results logs + if [[ -d fixtures/classes.json ]]; then rm -rf fixtures/classes.json fi