Skip to content

Commit

Permalink
fix: test coverage (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
chadsr authored Jun 2, 2024
1 parent 0eb72dc commit f5524bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: pip install .[dev,tests]
run: pip install -e .[dev,tests]
- name: Run Pytest
env:
TEST_CMC_API_KEY: ${{ secrets.TEST_CMC_API_KEY }}
run: pytest -vv --cov=./ --cov-report=xml tests/
run: pytest -vv --cov=./src --cov-report=xml tests/
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v4
with:
Expand Down

0 comments on commit f5524bf

Please sign in to comment.