Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ZoranPandovski authored Sep 6, 2023
1 parent 19eff77 commit dd70946
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,18 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install --no-cache-dir -e .[test]
pip install coveralls pytest-cov
pip install coveralls coverage-lcov
- name: Run unit tests
run: pytest --cov=mindsdb_sql --cov-report=term-missing
run: pytest --cov=geks test/ --cov-report xml
- name: Coveralls
uses: coverallsapp/[email protected]

with:
github-token: ${{ secrets.github_token }}
file: ./coverage.xml
flag-name: run-${{ join(matrix.*, '-') }}
git-branch: main
parallel: true

finish:
needs: test
runs-on: ubuntu-latest
Expand All @@ -36,3 +42,4 @@ jobs:
with:
file: coverage.xml
github-token: ${{ secrets.G_TOKEN }}
parallel-finished: true

0 comments on commit dd70946

Please sign in to comment.