Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
254a52d
Create resolve mlflow config
ealt Jan 10, 2026
c082130
Create mlflow defaults
ealt Jan 10, 2026
27b814c
Update defaults e2e test
ealt Jan 15, 2026
60b74d1
Fix name clash
ealt Jan 15, 2026
86d7185
Fix test setup
ealt Jan 15, 2026
8d106d6
Create more configs
ealt Jan 15, 2026
8b3a28f
Test fixes
ealt Jan 15, 2026
ceaf397
Fix test
ealt Jan 16, 2026
9230bfe
Fix test
ealt Jan 16, 2026
c600843
Create new tests
ealt Jan 16, 2026
025a9a6
Add tests
ealt Jan 16, 2026
452eed5
Consolidate and fix tests
ealt Jan 16, 2026
b11dc25
Fix tests
ealt Jan 16, 2026
00026e0
Fix some stuff
ealt Jan 16, 2026
727983e
Update comments/docstrings
ealt Jan 16, 2026
6d65c0b
Fix lint issues
ealt Jan 16, 2026
addcf13
Move spec to docs dir
ealt Jan 16, 2026
d47a271
Implement override flag
ealt Jan 17, 2026
f886be3
Address PR comments
ealt Jan 17, 2026
409927c
Fix issue
ealt Jan 17, 2026
8db0e63
Add null option to yaml
ealt Jan 17, 2026
a73e1cc
Add comments
ealt Jan 17, 2026
4024a27
Fix bug loading mlflow defaults in run management
ealt Jan 27, 2026
9f3b823
Better error handling
ealt Jan 27, 2026
b1bf935
Enhance coverage check workflow: upload coverage artifacts, improve r…
ealt Feb 26, 2026
93bad05
Merge remote-tracking branch 'origin/main' into load-subconfigs
ealt Mar 4, 2026
27afe71
Fix pylint issues
ealt Mar 4, 2026
6719d98
Add type assertion for actual_filtered in MLflow defaults test
ealt Mar 4, 2026
6228068
Update GitHub Actions workflow to use upload-artifact action for cove…
ealt Mar 4, 2026
904e910
Refactor argument name in managed_run MLflow test for clarity
ealt Mar 4, 2026
bb30507
Fix bugbot issues
ealt Mar 4, 2026
9588d40
Refactor load_mlflow_defaults function to simplify handling of mlflow…
ealt Mar 4, 2026
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
19 changes: 6 additions & 13 deletions .github/workflows/simplexity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
exit 1
fi

- name: Check coverage for new code (PRs only)
- name: Upload coverage artifact for coverage-check job
if: github.event_name == 'pull_request'
run: |
# Get the base branch (usually main)
Expand Down Expand Up @@ -108,18 +108,11 @@ jobs:

- name: Upload diff coverage report
if: github.event_name == 'pull_request' && always()
uses: actions/github-script@v7
uses: actions/upload-artifact@v4
with:
script: |
const fs = require('fs');
const reportPath = 'diff-coverage-report.md';
if (fs.existsSync(reportPath)) {
const report = fs.readFileSync(reportPath, 'utf8');
fs.appendFileSync(
process.env.GITHUB_STEP_SUMMARY,
`## Diff Coverage Report\n\n${report}\n`
);
}
name: coverage-xml
path: coverage.xml
retention-days: 1

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
Expand All @@ -128,4 +121,4 @@ jobs:
slug: Astera-org/simplexity
verbose: true
files: ./coverage.xml
fail_ci_if_error: false
fail_ci_if_error: false
Loading
Loading