Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,10 @@ jobs:
pytest --cov=./ --cov-report=xml

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v4.4.0
with:
fail_ci_if_error: true
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}
version: v0.6.0

6 changes: 5 additions & 1 deletion .github/workflows/smoke_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,13 @@ jobs:
# Install click >= 8.0.0 for CLI supports
python -m pip install click==8.0.3

- name: Install MacPorts
uses: melusina-org/setup-macports@v1
if: matrix.os == 'macos-13'

- run: sudo apt-get -y install graphviz
if: matrix.os == 'ubuntu-latest'
- run: brew install graphviz
- run: sudo port install graphviz
if: matrix.os == 'macos-13'
- run: choco install graphviz
if: matrix.os == 'windows-latest'
Expand Down