-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #71 from rapyuta-robotics/devel
🎉 release: v1.13.0
- Loading branch information
Showing
7 changed files
with
61 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
import unittest | ||
|
||
from rapyuta_io import Client, Project, Secret, SecretConfigSourceSSHAuth | ||
from rapyuta_io import Client, Project, Secret, SecretConfigDocker | ||
from rapyuta_io.utils import BadRequestError | ||
from rapyuta_io.utils.utils import generate_random_value | ||
from sdk_test.config import Configuration | ||
|
@@ -46,6 +46,7 @@ def test_client_without_project(self): | |
self.assertRaises( | ||
BadRequestError, | ||
lambda: client.create_secret( | ||
Secret('test-secret', SecretConfigSourceSSHAuth('test')) | ||
Secret('test-secret', SecretConfigDocker(username='username', password='password', email='[email protected]', | ||
registry='quay.io')) | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.