Skip to content

Implement first storage layer#72

Merged
BytecodeBrewer merged 50 commits into
mainfrom
implement-first-storage-layer
Jul 1, 2026
Merged

Implement first storage layer#72
BytecodeBrewer merged 50 commits into
mainfrom
implement-first-storage-layer

Conversation

@BytecodeBrewer

@BytecodeBrewer BytecodeBrewer commented Jul 1, 2026

Copy link
Copy Markdown
Owner

What changed?

  • add duckdb
  • add tests for the storage layer
  • updated docs files and readme

Related issue

Closes #38

Tests

  • I ran pytest
  • Existing tests pass
  • I added or updated tests where necessary
  • Not needed because this only affects documentation or repository setup

Checklist

  • The change is focused
  • No secrets or API keys are included
  • Documentation was updated if needed
  • CI is expected to pass

Notes

BytecodeBrewer and others added 30 commits June 20, 2026 17:34
Sync Develop with main again
…ssing-tests

40 reviewing and adding missing tests
* chore: auto-format to pass CI checks

* chore(43): delete create_pr.py

Add research for the first forecasting approach for ARGUS market time-series data.
Remove out-of-scope PR automation script before merging.

---------

Co-authored-by: Lev Gusiev <89646710+BytecodeBrewer@users.noreply.github.com>
@BytecodeBrewer BytecodeBrewer linked an issue Jul 1, 2026 that may be closed by this pull request
10 tasks
@BytecodeBrewer BytecodeBrewer merged commit 050f8f0 into main Jul 1, 2026
5 of 6 checks passed

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 90e11de118

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread README.md
Build the Docker image:

```bash
docker build -t argus .

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Use the Dockerfile name the build command expects

On Linux/CI this documented docker build -t argus . command looks for the default file named Dockerfile; Docker’s docs specify alternate names require --file. Since this commit added the file as lowercase dockerfile, users following these instructions will fail before the image builds unless the file is renamed or the command is changed to include -f dockerfile.

Useful? React with 👍 / 👎.

if result is None:
return False

assert result is not None

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Mock the yfinance dependency in this test

In CI or any offline/rate-limited environment, this assertion now turns a transient live Yahoo/yfinance failure into a hard test failure because prepare_trend_analysis() calls get_timeseries(), which returns None on exceptions or empty responses. The existing yfinance client tests already mock this dependency, so this service test should do the same instead of requiring an external request to succeed.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Implement first database/storage layer

3 participants