Skip to content

Commit

Permalink
Merge pull request #8 from MSDLLCpapers/main
Browse files Browse the repository at this point in the history
Update release_docs branch
  • Loading branch information
kstone40 authored Aug 7, 2024
2 parents 7be24b4 + 6a3c80d commit 1e93db8
Show file tree
Hide file tree
Showing 7 changed files with 2,723 additions and 1,119 deletions.
3 changes: 2 additions & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ omit =
obsidian/dash/*
obsidian/tests/*
obsidian/experiment/benchmark/*
obsidian/plotting/branding.py
obsidian/plotting/branding.py
app.py
21 changes: 21 additions & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
name: Pytest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install requirements
run: pip install obsidian-apo[dev]
- name: Run tests and collect coverage
run: pytest --cov=.
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/[email protected]
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Loading

0 comments on commit 1e93db8

Please sign in to comment.