Skip to content
Merged
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
791f5cb
Update documentation to reflect merged PRs and current project state
knowlen Jul 9, 2025
b8fc0f9
Simplify BRANCH_STRUCTURE.md: Remove redundant sections and branches
knowlen Jul 9, 2025
ad11e00
Merge pull request #6 from knowlen/v2/docs-update
knowlen Jul 9, 2025
b5edcf6
cleanup
knowlen Jul 9, 2025
8431204
Update CLAUDE.md API coverage from ~35% to ~45%
knowlen Jul 9, 2025
2b0faff
Add comprehensive integration test suite
knowlen Jul 9, 2025
f3b4d1c
Fix integration test issues
knowlen Jul 9, 2025
47360f9
Address PR review feedback
knowlen Jul 10, 2025
e8f683f
Complete PR review fixes
knowlen Jul 10, 2025
42dd8e3
Fix integration test timeout configuration
knowlen Jul 10, 2025
bb42f24
Fix duplicate fixtures and nested reference bugs in integration tests
knowlen Jul 10, 2025
bce9ee4
Rename get_np_cs to get_npcs throughout codebase and complete fixture…
knowlen Jul 10, 2025
5d159a9
Merge pull request #7 from knowlen/v2/integration-tests
knowlen Jul 10, 2025
664afbb
Update documentation to reflect completion of integration test suite
knowlen Jul 10, 2025
eb08f6b
remove this
knowlen Jul 11, 2025
464d7e8
Add advanced report search functionality with filtering and pagination
knowlen Jul 11, 2025
3598371
Update test.py to include report analysis and search functionality
knowlen Jul 11, 2025
c7e9edd
Fix sanity test enum references and add comprehensive sanity test suite
knowlen Jul 11, 2025
2a559dd
delete test.py
knowlen Jul 11, 2025
ce305c5
Add comprehensive README files for test suites
knowlen Jul 11, 2025
3177df4
Add GitHub Actions CI/CD pipeline and Dependabot configuration
knowlen Jul 11, 2025
75d8624
Trigger CI workflow
knowlen Jul 11, 2025
909cd86
Fix CI workflow issues: update artifact actions to v4 and add debugging
knowlen Jul 11, 2025
547c085
Address critical code review issues: validation, security, and CI fixes
knowlen Jul 11, 2025
4f59f19
Fix validation logic for UNSET types and timestamp bounds
knowlen Jul 11, 2025
aa7158a
Fix pre-commit issues: remove print statements and fix type annotations
knowlen Jul 11, 2025
68acad0
Fix pre-commit config to exclude tests from mypy and fix print statem…
knowlen Jul 11, 2025
4e4b341
Fix page parameter validation in report search
knowlen Jul 11, 2025
071ae5b
Optimize GitHub Actions to reduce CI minutes usage
knowlen Jul 11, 2025
d721ddf
Fix workflow triggers to unblock PR status checks
knowlen Jul 11, 2025
809ca39
Update documentation for Advanced Report Search completion
knowlen Jul 11, 2025
e11b6b2
Fix trailing whitespace in README.md
knowlen Jul 11, 2025
4c7ed02
Merge pull request #8 from knowlen/v2/report-search-api
knowlen Jul 11, 2025
e135cba
Documentation Theme Updates: Vim-style Dark Mode Enhancements (#10) (…
knowlen Jul 15, 2025
971acfb
Merge remote-tracking branch 'origin/v2-dev'
knowlen Jul 15, 2025
1a48c83
Fix dependabot actor name in CI workflow conditions
knowlen Jul 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
fi

- name: Run integration tests
if: github.event_name != 'workflow_dispatch' || inputs.run_integration_tests == 'true'
if: (github.event_name != 'workflow_dispatch' || inputs.run_integration_tests == 'true') && github.actor != 'app/dependabot'
env:
ESOLOGS_ID: ${{ secrets.ESOLOGS_ID }}
ESOLOGS_SECRET: ${{ secrets.ESOLOGS_SECRET }}
Expand All @@ -85,7 +85,7 @@ jobs:
pytest tests/integration/ -v --tb=short

- name: Run sanity tests
if: github.event_name != 'workflow_dispatch' || inputs.run_integration_tests == 'true'
if: (github.event_name != 'workflow_dispatch' || inputs.run_integration_tests == 'true') && github.actor != 'app/dependabot'
env:
ESOLOGS_ID: ${{ secrets.ESOLOGS_ID }}
ESOLOGS_SECRET: ${{ secrets.ESOLOGS_SECRET }}
Expand Down