Skip to content

Commit

Permalink
prevent overriding r tests. modified PythonTest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mfleisch committed Dec 22, 2024
1 parent 8571f7e commit 124b0d5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/PythonTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ jobs:
import PySirius
accept_terms = True
account_credentials = PySirius.AccountCredentials(username=os.environ['SIRIUS_USER'], password=os.environ['SIRIUS_PW'])
configuration = PySirius.Configuration(host = "http://localhost:8080")
api_instance = PySirius.LoginAndAccountApi(PySirius.ApiClient(configuration))
sdk = SiriusSDK().attach_or_start_sirius()
api_instance = PySirius.LoginAndAccountApi(sdk.get_client())
api_response = api_instance.login(accept_terms, account_credentials)
if isinstance(api_response, PySirius.AccountInfo):
exit(0)
Expand Down
1 change: 1 addition & 0 deletions client-api_r/generated/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ vignettes/*.pdf
# Temporary files created by R markdown
*.utf8.md
*.knit.md
/generated.Rproj
2 changes: 1 addition & 1 deletion client-api_r/generated/.openapi-generator-ignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md
tests
tests/testthat/*
tests/*
.travis.yml
git_push.sh
Expand Down

0 comments on commit 124b0d5

Please sign in to comment.