Skip to content

Commit

Permalink
Added SONAR and COVERALLS tokens to environment for nox job
Browse files Browse the repository at this point in the history
  • Loading branch information
clyde-johnston committed Aug 18, 2023
1 parent 0f3ae51 commit 8432e90
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2019-npcap]
python: ['3.7', '3.8', '3.9', '3.10']
os: [ ubuntu-20.04, windows-2019-npcap ]
python: [ '3.7', '3.8', '3.9', '3.10' ]
runs-on: ${{ matrix.os }}
steps:
- name: Check out
Expand Down Expand Up @@ -52,6 +52,13 @@ jobs:
run: |
nox --non-interactive --error-on-missing-interpreters --session test pristine --python ${{ matrix.python }}
nox --non-interactive --session demo check_style docs
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}

- name: Run Coveralls
if: ${{ runner.os == 'Linux' && matrix.python = '3.10' }}
uses: coverallsapp/github-action@v2

- name: Save logs
uses: actions/upload-artifact@v3
Expand Down
6 changes: 4 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,14 +133,16 @@ def test(session):
session.run("pylint", *map(str, src_dirs), env={"PYTHONPATH": str(compiled_dir)})

# Publish coverage statistics. This also has to be run from the test session to access the coverage files.
coveralls_repo_token = session.env.get("COVERALLS_REPO_TOKEN")
github_token = session.env.get("GITHUB_TOKEN")
if sys.platform.startswith("linux") and is_latest_python(session) and session.env.get("COVERALLS_REPO_TOKEN"):
session.install("coveralls")
session.run("coveralls")
#session.run("coveralls", "--service=github-actions", env={"COVERALLS_REPO_TOKEN": "{coveralls_repo_token}"})
else:
session.log("Coveralls skipped")

# Submit analysis to SonarCloud. This also has to be run from the test session to access the coverage files.
sonarcloud_token = session.env.get("SONARCLOUD_TOKEN")
sonarcloud_token = session.env.get("SONAR_TOKEN")
if sys.platform.startswith("linux") and is_latest_python(session) and sonarcloud_token:
session.run("coverage", "xml", "-i", "-o", str(ROOT_DIR / ".coverage.xml"))

Expand Down

0 comments on commit 8432e90

Please sign in to comment.