Skip to content

Commit

Permalink
Fixes #165
Browse files Browse the repository at this point in the history
  • Loading branch information
rustydb committed Jan 29, 2023
1 parent 77ed1e3 commit 8c8e2a6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,8 @@ jobs:
pip install .[ci]
nox -e tests
nox -e cover
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
3 changes: 2 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ def tests(session):
"--cov=tests",
"--cov=network_modeling",
"--cov-append",
"--cov-report=",
"--cov-report=xml",
"--cov-report=html",
f"--cov-fail-under={COVERAGE_FAIL}",
path,
*session.posargs,
Expand Down

0 comments on commit 8c8e2a6

Please sign in to comment.