-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#74,75 Creating and using bucket-fs connection objects #76
Conversation
# Conflicts: # exasol/python_extension_common/deployment/language_container_deployer.py # exasol/python_extension_common/deployment/language_container_deployer_cli.py # pyproject.toml # test/unit/deployment/test_language_container_deployer.py # test/unit/deployment/test_language_container_deployer_cli.py
…connection-object
|
||
|
||
@dataclass | ||
class ConnObjectData: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
class ConnObjectData: | |
class ConnectionInfo: |
bfs_path.write(TEST_FILE_CONTENT) | ||
try: | ||
yield |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bfs_path.write(TEST_FILE_CONTENT) | |
try: | |
yield | |
try: | |
bfs_path.write(TEST_FILE_CONTENT) | |
yield |
if not use_saas: | ||
pytest.skip("The test is not configured to use SaaS.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to achieve this decorator based?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Possibly, but it's not trivial, as we need to look at the fixture.
closes #74
closes #75