Skip to content

Commit

Permalink
Fix for SonarCloud
Browse files Browse the repository at this point in the history
  • Loading branch information
okorach committed Jan 9, 2025
1 parent 972c4e0 commit a7ae01b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
SC_OPTS = f'--{opt.URL} https://sonarcloud.io --{opt.TOKEN} {os.getenv("SONAR_TOKEN_SONARCLOUD")} --{opt.ORG} okorach'

SQ = platform.Platform(url=creds.TARGET_PLATFORM, token=creds.TARGET_TOKEN)
SC = platform.Platform(url="https://sonarcloud.io", token=os.getenv("SONAR_TOKEN_SONARCLOUD"))
SC = platform.Platform(url="https://sonarcloud.io", token=os.getenv("SONAR_TOKEN_SONARCLOUD"), org="okorach")
TEST_SQ = platform.Platform(url=LATEST_TEST, token=os.getenv("SONAR_TOKEN_ADMIN_USER"))

TAGS = ["foo", "bar"]
Expand Down

0 comments on commit a7ae01b

Please sign in to comment.