-
Notifications
You must be signed in to change notification settings - Fork 5
Feat/gcp az compatible #111
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
Open
Bennylave
wants to merge
34
commits into
Edwardvaneechoud:main
Choose a base branch
from
Bennylave:feat/gcp_az_compatible
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
dab974b
Adding print_tree method to FlowGraph
8aa0b74
Adding method print_tree() to FlowGraph
3ead94a
Adding method print_tree() to FlowGraph
e158075
Changes to node ordering in print_tree method
56be3d3
Merge branch 'feat/print_tree'
a237c11
Adding test_utils for GCS
8a9a3a7
Merge remote-tracking branch 'upstream/main'
8509df1
Feature/add python api in docs (#106)
Edwardvaneechoud 8128be3
Improvement/improve mobile experience docs (#107)
Edwardvaneechoud 8e2353b
Fixing handling of pivot (#105)
Edwardvaneechoud c1c22ea
Adding print_tree method to FlowGraph (#103)
Bennylave 5345bb0
Migrating to pl-fuzzy-frame-match (#108)
Edwardvaneechoud dc0e50b
Feature/small refactor (#109)
Edwardvaneechoud c74d9da
Feature/unify execution methods (#110)
Edwardvaneechoud 982563f
Bumping version
Edwardvaneechoud fdc6015
Adding test_utils for GCS
0f1f1b4
Improvement/improve mobile experience docs (#107)
Edwardvaneechoud bc5c0dc
Fixing handling of pivot (#105)
Edwardvaneechoud 1fb1f32
Adding print_tree method to FlowGraph (#103)
Bennylave 64ef20c
Migrating to pl-fuzzy-frame-match (#108)
Edwardvaneechoud ea0c878
Feature/small refactor (#109)
Edwardvaneechoud bb673f1
Feature/unify execution methods (#110)
Edwardvaneechoud 2c0088c
Bumping version
Edwardvaneechoud 1c77804
Merge branch 'main' into feat/gcp_az_compatible
aae9a75
Resolving conflicts
d15b58e
Adding GCS test case
5e8984e
Adding GCS test case
c5abb72
Adding GCS test case
056e201
Adding GCS test case
eaebec6
Adding GCS test case
d39c59c
Adding GCS test case
df03a5c
Adding GCS test case
0115db0
Adding GCS test case
62be026
Adding GCS test case
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Empty file.
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import logging | ||
|
||
# Set up logging | ||
logging.basicConfig( | ||
level=logging.INFO, | ||
format='%(asctime)s - %(levelname)s - %(message)s', | ||
datefmt='%Y-%m-%d %H:%M:%S' | ||
) | ||
logger = logging.getLogger("postgres_commands") | ||
|
||
|
||
def start_gcs(): | ||
"""Start GCS Server container for testing""" | ||
from . import fixtures | ||
if not fixtures.is_docker_available(): | ||
logger.warning("Docker is not available. Cannot start PostgreSQL container.") | ||
print("\n" + "=" * 50) | ||
print("SKIPPING: Docker is not available on this system") | ||
print("Tests requiring Docker will need to be skipped") | ||
print("=" * 50 + "\n") | ||
return 0 # Return success to allow pipeline to continue | ||
|
||
|
||
if fixtures.start_gcs(): | ||
print(f"MinIO started at http://localhost:{fixtures.GCS_PORT}") | ||
return 0 | ||
return 1 | ||
|
||
|
||
def stop_gcs(): | ||
"""Stop MinIO container""" | ||
from . import fixtures | ||
|
||
if not fixtures.is_docker_available(): | ||
logger.warning("Docker is not available. Cannot stop MinIO container.") | ||
print("\n" + "=" * 50) | ||
print("SKIPPING: Docker is not available on this system") | ||
print("Tests requiring Docker will need to be skipped") | ||
print("=" * 50 + "\n") | ||
return 0 | ||
|
||
if fixtures.stop_gcs(): | ||
print("MinIO stopped successfully") | ||
return 0 | ||
return 1 |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Think something went wrong when merging with master. There is some code duplication