Skip to content

Commit

Permalink
chore(ci): fixed missing arg
Browse files Browse the repository at this point in the history
  • Loading branch information
rokam committed May 15, 2024
1 parent d3cc006 commit 3c69e22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Build midea-local
run: |
python build
python -m build
pip install dist/midea_local*.whl
- name: Lint with flake8
run: |
Expand All @@ -36,7 +36,7 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --output-file ./reports/flake8/flake8stats.txt
- name: Test with pytest
run: |
pytest --cov=sunweg --cov-report html --cov-report xml --junitxml=reports/junit/junit.xml
pytest --cov=midealocal --cov-report html --cov-report xml --junitxml=reports/junit/junit.xml
mv htmlcov reports/coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3

0 comments on commit 3c69e22

Please sign in to comment.