Skip to content

Conversation

@AlexSkrypnyk
Copy link
Member

@AlexSkrypnyk AlexSkrypnyk commented Aug 8, 2025

Closes #1894

Summary by CodeRabbit

  • New Features

    • Added a --no-cache option to the database download command, allowing users to force a fresh database backup.
  • Documentation

    • Updated documentation to clarify database caching behavior and explain the new --no-cache option.
    • Revised environment variable documentation to reflect new variable names and descriptions related to database download workflows.
  • Bug Fixes

    • Improved log messages and variable handling in database download scripts for clearer feedback and consistency.
  • Tests

    • Updated test cases to align with the new environment variable and improved log output.

@coderabbitai
Copy link

coderabbitai bot commented Aug 8, 2025

Walkthrough

The changes introduce a --no-cache option to the ahoy download-db command, allowing users to force a fresh database backup. This involves updating command usage and logic, renaming and adjusting environment variables, updating documentation, and modifying related test cases and scripts to reflect the new option and variable names.

Changes

Cohort / File(s) Change Summary
Ahoy Command Update
.ahoy.yml
Enhanced download-db command to support --no-cache, updating usage text and command logic to set VORTEX_DB_DOWNLOAD_NO_CACHE=1 when flag is present.
Documentation
.vortex/docs/content/workflows/development.mdx, .vortex/docs/content/workflows/variables.mdx
Updated docs to clarify caching behavior, describe the new --no-cache flag, and document environment variable renaming and semantics.
Script Logic
scripts/vortex/download-db-lagoon.sh
Renamed VORTEX_DB_DOWNLOAD_REFRESH to VORTEX_DB_DOWNLOAD_NO_CACHE throughout, adjusted directory creation logic, and updated log messages for clarity.
Unit Tests
.vortex/tests/bats/unit/download-db-lagoon.bats
Updated test cases to reflect the new environment variable name and additional log output when a refresh is requested.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant Ahoy CLI
    participant download-db.sh
    participant download-db-lagoon.sh

    User->>Ahoy CLI: ahoy download-db [--no-cache]
    Ahoy CLI->>Ahoy CLI: Check for --no-cache
    alt --no-cache present
        Ahoy CLI->>download-db.sh: Set VORTEX_DB_DOWNLOAD_NO_CACHE=1
    else --no-cache absent
        Ahoy CLI->>download-db.sh: Run normally
    end
    download-db.sh->>download-db-lagoon.sh: Call script
    download-db-lagoon.sh->>download-db-lagoon.sh: Check VORTEX_DB_DOWNLOAD_NO_CACHE
    alt VORTEX_DB_DOWNLOAD_NO_CACHE=1
        download-db-lagoon.sh->>download-db-lagoon.sh: Force fresh database dump
    else
        download-db-lagoon.sh->>download-db-lagoon.sh: Use cached dump if available
    end
Loading

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~8 minutes

Assessment against linked issues

Objective Addressed Explanation
Add --no-cache option to ahoy download-db to force fresh DB backup (#1894)
Update environment variable to VORTEX_DB_DOWNLOAD_NO_CACHE for no-cache behavior (#1894)
Update documentation and usage to reflect new option and variable (#1894)

Assessment against linked issues: Out-of-scope changes

No out-of-scope changes found.

Possibly related PRs

Poem

A hop and a skip, a fresh DB I fetch,
With --no-cache I leap, no dump left to catch!
Variables renamed, docs shiny and bright,
My scripts now refreshed, all tests running right.
With every command, I wiggle my nose—
For a bunny, clean databases are how it goes! 🐇✨

Note

🔌 MCP (Model Context Protocol) integration is now available in Early Access!

Pro users can now connect to remote MCP servers under the Integrations page to get reviews and chat conversations that understand additional development context.

✨ Finishing Touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch feature/allow-download-fresh-db

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai generate unit tests to generate unit tests for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@AlexSkrypnyk AlexSkrypnyk force-pushed the feature/allow-download-fresh-db branch from 706fdd6 to 8922e79 Compare August 8, 2025 11:41
@github-actions github-actions bot temporarily deployed to commit August 8, 2025 11:43 Inactive
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 7

🔭 Outside diff range comments (1)
scripts/vortex/download-db-lagoon.sh (1)

123-129: Fix remote shell portability: use single ‘=’ in test

SSH executes the command via the remote’s default shell, often /bin/sh (dash/ash), where ‘==’ is non-POSIX. Use ‘=’ to avoid false negatives.

Apply this diff:

-  "if [ ! -f \"${VORTEX_DB_DOWNLOAD_LAGOON_REMOTE_DIR}/${VORTEX_DB_DOWNLOAD_LAGOON_REMOTE_FILE}\" ] || [ \"${VORTEX_DB_DOWNLOAD_NO_CACHE}\" == \"1\" ] ; then \
+  "if [ ! -f \"${VORTEX_DB_DOWNLOAD_LAGOON_REMOTE_DIR}/${VORTEX_DB_DOWNLOAD_LAGOON_REMOTE_FILE}\" ] || [ \"${VORTEX_DB_DOWNLOAD_NO_CACHE}\" = \"1\" ] ; then \

Optional hardening (timezone-safe caching): compute the date on the remote rather than locally to ensure “same day” semantics across environments:

# Example: define remote file name inside the remote command
remote_file="db_$(date +%Y%m%d).sql"
# Then use ${remote_file} instead of expanding a locally computed date.
📜 Review details

Configuration used: CodeRabbit UI
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between f1127e0 and 8922e79.

⛔ Files ignored due to path filters (3)
  • .vortex/installer/tests/Fixtures/install/_baseline/.ahoy.yml is excluded by !.vortex/installer/tests/Fixtures/**
  • .vortex/installer/tests/Fixtures/install/provision_profile/.ahoy.yml is excluded by !.vortex/installer/tests/Fixtures/**
  • .vortex/installer/tests/Fixtures/install/theme_absent/.ahoy.yml is excluded by !.vortex/installer/tests/Fixtures/**
📒 Files selected for processing (5)
  • .ahoy.yml (1 hunks)
  • .vortex/docs/content/workflows/development.mdx (1 hunks)
  • .vortex/docs/content/workflows/variables.mdx (1 hunks)
  • .vortex/tests/bats/unit/download-db-lagoon.bats (4 hunks)
  • scripts/vortex/download-db-lagoon.sh (3 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (12)
  • GitHub Check: build (1)
  • GitHub Check: build (0)
  • GitHub Check: vortex-test-deployment (1)
  • GitHub Check: vortex-test-workflow (3)
  • GitHub Check: vortex-test-workflow (1)
  • GitHub Check: vortex-test-deployment (0)
  • GitHub Check: vortex-test-workflow (0)
  • GitHub Check: vortex-test-workflow (2)
  • GitHub Check: vortex-test-common
  • GitHub Check: vortex-test-installer (8.3)
  • GitHub Check: vortex-test-installer (8.2)
  • GitHub Check: vortex-test-installer (8.4)
🔇 Additional comments (3)
.vortex/tests/bats/unit/download-db-lagoon.bats (1)

146-146: LGTM: correctly enabling the no-cache path for this test

Setting VORTEX_DB_DOWNLOAD_NO_CACHE="1" here is correct and matches the scenario.

scripts/vortex/download-db-lagoon.sh (2)

26-26: LGTM: new no-cache flag variable

Correctly exposes VORTEX_DB_DOWNLOAD_NO_CACHE for controlling fresh dump behavior.


104-107: LGTM: safe creation of dump directory with clear logging

Idempotent mkdir -p with a task log improves UX and avoids errors when the directory is missing.

Comment on lines +123 to 128
usage: Download database. Run with "--no-cache" option to force fresh database backup.
aliases: ['fetch-db']
cmd: ./scripts/vortex/download-db.sh
cmd: |
case " $* " in *" --no-cache "*) export VORTEX_DB_DOWNLOAD_NO_CACHE=1;; esac
./scripts/vortex/download-db.sh
#;> !PROVISION_TYPE_PROFILE
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

Good flag wiring; also forward arguments to the script

The --no-cache detection and env var export look good. Forwarding "$@" to the script improves extensibility if more flags are added later.

Apply this diff:

   cmd: |
     case " $* " in *" --no-cache "*) export VORTEX_DB_DOWNLOAD_NO_CACHE=1;; esac
-    ./scripts/vortex/download-db.sh
+    ./scripts/vortex/download-db.sh "$@"
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
usage: Download database. Run with "--no-cache" option to force fresh database backup.
aliases: ['fetch-db']
cmd: ./scripts/vortex/download-db.sh
cmd: |
case " $* " in *" --no-cache "*) export VORTEX_DB_DOWNLOAD_NO_CACHE=1;; esac
./scripts/vortex/download-db.sh
#;> !PROVISION_TYPE_PROFILE
usage: Download database. Run with "--no-cache" option to force fresh database backup.
aliases: ['fetch-db']
cmd: |
case " $* " in *" --no-cache "*) export VORTEX_DB_DOWNLOAD_NO_CACHE=1;; esac
./scripts/vortex/download-db.sh "$@"
#;> !PROVISION_TYPE_PROFILE
🤖 Prompt for AI Agents
In the .ahoy.yml file around lines 123 to 128, the current command detects the
--no-cache flag and sets an environment variable but does not forward any
additional arguments to the script. Modify the cmd section to forward all
received arguments ("$@") to the ./scripts/vortex/download-db.sh script to
support future extensibility with more flags.

Comment on lines +48 to +51
dump from the production environment into a `.data` directory. If there was a
download attempt on the same day (locally or from CI), it will download the
cached database dump. Use `ahoy fetch-db --no-cache` to create a new database
dump regardless of the cache.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

Clearer caching behavior; consider noting timezone edge-case or aligning script

The explanation is good. One nuance: the dump filename uses a date suffix; currently the script computes that date locally, which can diverge from CI/remote timezones around day boundaries. Either:

  • add a brief note that “same day” is based on the machine running the command, or
  • (preferred) adjust the script to compute the date on the remote to avoid drift (see my script comment).
🤖 Prompt for AI Agents
In .vortex/docs/content/workflows/development.mdx around lines 48 to 51, clarify
the caching behavior by adding a note that the "same day" determination for the
dump filename is based on the local machine's timezone, which may differ from CI
or remote environments. Alternatively, update the script to compute the date
suffix on the remote environment to ensure consistent date calculation across
different timezones and avoid cache mismatches.

Comment on lines +669 to 684
### `VORTEX_DB_DOWNLOAD_NO_CACHE`

Proceed with download.
Flag to download a fresh copy of the database.

Default value: `1`
Default value: `UNDEFINED`

Defined in: `scripts/vortex/download-db.sh`
Defined in: `scripts/vortex/download-db-lagoon.sh`

### `VORTEX_DB_DOWNLOAD_REFRESH`
### `VORTEX_DB_DOWNLOAD_PROCEED`

Flag to download a fresh copy of the database.
Proceed with download.

Default value: `UNDEFINED`
Default value: `1`

Defined in: `scripts/vortex/download-db-lagoon.sh`
Defined in: `scripts/vortex/download-db.sh`

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

❓ Verification inconclusive

Rename looks consistent; add a brief usage note and verify no stale refs

Good swap: NO_CACHE now controls fresh dump creation, PROCEED covers the generic gating. Consider adding that NO_CACHE should be set to "1" to activate.

Run this to ensure no leftover references:


🏁 Script executed:

#!/bin/bash
# Find stale uses of old variable name
rg -n --color=never 'VORTEX_DB_DOWNLOAD_REFRESH'

Length of output: 48


No stale references found; please add NO_CACHE usage note

I ran rg -n 'VORTEX_DB_DOWNLOAD_REFRESH' across the repo and found no leftover occurrences. The renaming is consistent with the scripts. Before merging, please update the documentation to clarify how to activate the new flag:

  • File: .vortex/docs/content/workflows/variables.mdx
  • Location: around lines 669–684 under VORTEX_DB_DOWNLOAD_NO_CACHE

Suggested diff:

 ### `VORTEX_DB_DOWNLOAD_NO_CACHE`

 Flag to download a fresh copy of the database.
+
+Activate by setting to `1`.

 Default value: `UNDEFINED`

 Defined in: `scripts/vortex/download-db-lagoon.sh`
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
### `VORTEX_DB_DOWNLOAD_NO_CACHE`
Proceed with download.
Flag to download a fresh copy of the database.
Default value: `1`
Default value: `UNDEFINED`
Defined in: `scripts/vortex/download-db.sh`
Defined in: `scripts/vortex/download-db-lagoon.sh`
### `VORTEX_DB_DOWNLOAD_REFRESH`
### `VORTEX_DB_DOWNLOAD_PROCEED`
Flag to download a fresh copy of the database.
Proceed with download.
Default value: `UNDEFINED`
Default value: `1`
Defined in: `scripts/vortex/download-db-lagoon.sh`
Defined in: `scripts/vortex/download-db.sh`
### `VORTEX_DB_DOWNLOAD_NO_CACHE`
Flag to download a fresh copy of the database.
Activate by setting to `1`.
Default value: `UNDEFINED`
Defined in: `scripts/vortex/download-db-lagoon.sh`
### `VORTEX_DB_DOWNLOAD_PROCEED`
Proceed with download.
Default value: `1`
Defined in: `scripts/vortex/download-db.sh`
🤖 Prompt for AI Agents
In .vortex/docs/content/workflows/variables.mdx around lines 669 to 684, the
documentation for VORTEX_DB_DOWNLOAD_NO_CACHE is missing a usage note explaining
how to activate this flag. Add a clear explanation under the
VORTEX_DB_DOWNLOAD_NO_CACHE section describing how to set or use this flag to
download a fresh copy of the database, ensuring users understand its purpose and
activation method.

Comment on lines +24 to +25
"- Database dump refresh requested. Will create a new dump."

Copy link

@coderabbitai coderabbitai bot Aug 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Test expectation does not match implementation; remove the refresh note here

The script prints “Database dump refresh requested. Will create a new dump.” only when VORTEX_DB_DOWNLOAD_NO_CACHE="1". This test doesn’t set it, so this assertion will fail. Remove these lines (or set the env var if the test is meant to cover the no-cache path).

Apply this diff to drop the incorrect expectation:

-    "- Database dump refresh requested. Will create a new dump."
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"- Database dump refresh requested. Will create a new dump."
🤖 Prompt for AI Agents
In .vortex/tests/bats/unit/download-db-lagoon.bats at lines 24 to 25, the test
expects the output "Database dump refresh requested. Will create a new dump."
which only appears when the environment variable VORTEX_DB_DOWNLOAD_NO_CACHE is
set to "1". Since this test does not set that variable, remove the assertion
checking for this output line to fix the mismatch between test expectation and
implementation.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • is the negative assertion!

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@AlexSkrypnyk You're right—thanks for the clarification. The leading "- " denotes a negative assertion in the run_steps harness, so the tests are correct as written. I retract my earlier suggestion; no change needed here. I've recorded this convention to avoid future confusion.


✏️ Learnings added
Learnt from: AlexSkrypnyk
PR: drevops/vortex#1896
File: .vortex/tests/bats/unit/download-db-lagoon.bats:24-25
Timestamp: 2025-08-08T12:02:24.633Z
Learning: In .vortex/tests/bats/unit Bats tests using ../_helper.bash (run_steps), prefixing a STEPS entry with "- " denotes a negative assertion (the substring must NOT appear in output). Unprefixed entries are positive assertions. Example: "- Database dump refresh requested. Will create a new dump." asserts absence; "Database dump refresh requested. Will create a new dump." asserts presence.

Note: Learnings are effective only in the context of similar code segments. To apply general coding guidelines, please configure review instructions. You can manage existing learnings in the app.


🧠 Learnings used
Learnt from: AlexSkrypnyk
PR: drevops/vortex#0
File: :0-0
Timestamp: 2025-05-29T12:15:32.188Z
Learning: Do not review files in `.vortex/installer/tests/Fixtures/install` directory as they are test fixtures.

Learnt from: AlexSkrypnyk
PR: drevops/vortex#1697
File: .vortex/installer/tests/Fixtures/install/provision_database_lagoon/docs/onboarding.md:16-17
Timestamp: 2025-06-02T00:41:36.321Z
Learning: DO NOT EVER REVIEW FILES IN .vortex/installer/tests/Fixtures/ directory - these are test fixtures and should not be reviewed under any circumstances.

Comment on lines +78 to +79
"- Database dump refresh requested. Will create a new dump."

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Same mismatch as above; drop the refresh note from this test

This test also doesn’t set VORTEX_DB_DOWNLOAD_NO_CACHE, so expecting the refresh note is incorrect.

Apply this diff:

-    "- Database dump refresh requested. Will create a new dump."
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"- Database dump refresh requested. Will create a new dump."
🤖 Prompt for AI Agents
In .vortex/tests/bats/unit/download-db-lagoon.bats around lines 78 to 79, remove
the log message "- Database dump refresh requested. Will create a new dump."
from the test output expectations because this test does not set
VORTEX_DB_DOWNLOAD_NO_CACHE, so it should not expect a refresh note. Adjust the
test assertions accordingly to exclude this message.

Comment on lines +131 to +132
"Database dump refresh requested. Will create a new dump."

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

LGTM: refresh note asserted where NO_CACHE=1 is set

This assertion aligns with the script’s behavior for the no-cache path. Consider using the same message style across tests (no leading dash) for consistency.

🤖 Prompt for AI Agents
In .vortex/tests/bats/unit/download-db-lagoon.bats around lines 131 to 132, the
refresh note message includes a leading dash which is inconsistent with other
tests. Remove the leading dash from the message to match the style used in other
assertions, ensuring consistent message formatting across all tests.

Comment on lines +109 to +111
if [ "$VORTEX_DB_DOWNLOAD_NO_CACHE" == "1" ]; then
note "Database dump refresh requested. Will create a new dump."
fi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

Prefer POSIX ‘=’ over ‘==’ in [ test ] for portability

Although the script runs under bash locally, using ‘=’ avoids portability issues and keeps style consistent with the remote change below.

Apply this diff:

-if [ "$VORTEX_DB_DOWNLOAD_NO_CACHE" == "1" ]; then
+if [ "$VORTEX_DB_DOWNLOAD_NO_CACHE" = "1" ]; then
   note "Database dump refresh requested. Will create a new dump."
 fi
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
if [ "$VORTEX_DB_DOWNLOAD_NO_CACHE" == "1" ]; then
note "Database dump refresh requested. Will create a new dump."
fi
if [ "$VORTEX_DB_DOWNLOAD_NO_CACHE" = "1" ]; then
note "Database dump refresh requested. Will create a new dump."
fi
🤖 Prompt for AI Agents
In scripts/vortex/download-db-lagoon.sh around lines 109 to 111, the test
condition uses '==' which is not POSIX compliant and may cause portability
issues. Replace '==' with '=' in the if statement to ensure POSIX compatibility
and maintain consistent style.

@codecov
Copy link

codecov bot commented Aug 8, 2025

Codecov Report

❌ Patch coverage is 66.66667% with 2 lines in your changes missing coverage. Please review.
✅ Project coverage is 73.25%. Comparing base (f1127e0) to head (8922e79).
⚠️ Report is 1 commits behind head on develop.

Files with missing lines Patch % Lines
scripts/vortex/download-db-lagoon.sh 66.66% 2 Missing ⚠️

❗ There is a different number of reports uploaded between BASE (f1127e0) and HEAD (8922e79). Click for more details.

HEAD has 7 uploads less than BASE
Flag BASE (f1127e0) HEAD (8922e79)
19 12
Additional details and impacted files
@@             Coverage Diff             @@
##           develop    #1896      +/-   ##
===========================================
- Coverage    78.70%   73.25%   -5.45%     
===========================================
  Files           85       39      -46     
  Lines         5019     3167    -1852     
  Branches        35        0      -35     
===========================================
- Hits          3950     2320    -1630     
+ Misses        1069      847     -222     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@AlexSkrypnyk AlexSkrypnyk merged commit 22c3afd into develop Aug 8, 2025
28 of 30 checks passed
@AlexSkrypnyk AlexSkrypnyk deleted the feature/allow-download-fresh-db branch August 8, 2025 12:07
@github-project-automation github-project-automation bot moved this from BACKLOG to Release queue in Vortex Aug 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Archived in project

Development

Successfully merging this pull request may close these issues.

Allow to download a fresh DB using ahoy download-db --no-cache - Lagoon

2 participants