diff --git a/.github/workflows/test_backend.yml b/.github/workflows/test_backend.yml index a8e0560fb..cfcdd3e7b 100644 --- a/.github/workflows/test_backend.yml +++ b/.github/workflows/test_backend.yml @@ -72,8 +72,8 @@ jobs: id: register-project if: ${{success()}} run: | - chmod +x ./register_report.sh - ./register_report.sh + chmod +x ./tests/scripts/register_report.sh + ./tests/scripts/register_report.sh - if: steps.register-project.outputs.project_exists != 'true' uses: JamesIves/github-pages-deploy-action@v4 with: @@ -85,8 +85,8 @@ jobs: - name: Generate report details id: report-details run: | - chmod +x ./generate_report_details.sh - ./generate_report_details.sh + chmod +x ./tests/scripts/generate_report_details.sh + ./tests/scripts/generate_report_details.sh - name: Build report uses: simple-elf/allure-report-action@master @@ -102,8 +102,8 @@ jobs: - name: Generate Latest Report run: | - chmod +x ./generate_latest_report_redirect.sh - ./generate_latest_report_redirect.sh ${{steps.report-details.outputs.report_number}} + chmod +x ./tests/scripts/generate_latest_report_redirect.sh + ./tests/scripts/generate_latest_report_redirect.sh ${{steps.report-details.outputs.report_number}} - name: Deploy report to Github Pages uses: JamesIves/github-pages-deploy-action@v4 diff --git a/.github/workflows/test_integration_playwright.yml b/.github/workflows/test_integration_playwright.yml index 474bbbfb4..9d2fe000e 100644 --- a/.github/workflows/test_integration_playwright.yml +++ b/.github/workflows/test_integration_playwright.yml @@ -106,8 +106,8 @@ jobs: id: register-project if: ${{success()}} run: | - chmod +x ./register_report.sh - ./register_report.sh + chmod +x ./tests/scripts/register_report.sh + ./tests/scripts/register_report.sh - if: steps.register-project.outputs.project_exists != 'true' uses: JamesIves/github-pages-deploy-action@v4 with: @@ -119,8 +119,8 @@ jobs: - name: Generate report details id: report-details run: | - chmod +x ./generate_report_details.sh - ./generate_report_details.sh + chmod +x ./tests/scripts/generate_report_details.sh + ./tests/scripts/generate_report_details.sh - name: Build report uses: simple-elf/allure-report-action@master @@ -137,8 +137,8 @@ jobs: - name: Generate Latest Report run: | - chmod +x ./generate_latest_report_redirect.sh - ./generate_latest_report_redirect.sh ${{steps.report-details.outputs.report_number}} + chmod +x ./tests/scripts/generate_latest_report_redirect.sh + ./tests/scripts/generate_latest_report_redirect.sh ${{steps.report-details.outputs.report_number}} - name: Deploy report to Github Pages uses: JamesIves/github-pages-deploy-action@v4 diff --git a/.pre-commit-config.yaml b/govtool/backend/.pre-commit-config.yaml similarity index 100% rename from .pre-commit-config.yaml rename to govtool/backend/.pre-commit-config.yaml diff --git a/.envrc.example b/infra/.envrc.example similarity index 100% rename from .envrc.example rename to infra/.envrc.example diff --git a/generate_latest_report_redirect.sh b/tests/scripts/generate_latest_report_redirect.sh similarity index 100% rename from generate_latest_report_redirect.sh rename to tests/scripts/generate_latest_report_redirect.sh diff --git a/generate_report_details.sh b/tests/scripts/generate_report_details.sh similarity index 100% rename from generate_report_details.sh rename to tests/scripts/generate_report_details.sh diff --git a/register_report.sh b/tests/scripts/register_report.sh similarity index 100% rename from register_report.sh rename to tests/scripts/register_report.sh