-
Notifications
You must be signed in to change notification settings - Fork 135
Canalespy gsheet helper functions #961
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
Draft
sharinetmc
wants to merge
10
commits into
main
Choose a base branch
from
canalespy-gsheet-helper-functions
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.
Draft
Changes from 2 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
a6883e8
attempt_gsheet_method add function
sharinetmc 07d4da7
add unit test
sharinetmc f629af9
some pr fix requests
sharinetmc b95561e
merge with main
sharinetmc be4caba
Update mac runner to macos-12 instead of mac-latest (#1049)
shaunagm d49e69b
resolve a comment
sharinetmc 54e17eb
test fialures source
sharinetmc cf00471
more pr comment fixes
sharinetmc 5204096
merge with main
sharinetmc 8b47709
recursion pr comments
sharinetmc 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -164,3 +164,30 @@ def test_share_spreadsheet(self): | |
| self.spreadsheet_id | ||
| ) | ||
| self.assertIn("[email protected]", permissions["emailAddress"]) | ||
|
|
||
| def test_combine_multiple_sheet_data_attempt_gsheet_method(self): | ||
| spreadsheet_id_a = self.google_sheets.create_spreadsheet("parsons_test_01") | ||
| test_table_a = Table( | ||
| [ | ||
| {"first": "Bob", "last": "Smith"}, | ||
| {"first": "Sue", "last": "Doe"}, | ||
| ] | ||
| ) | ||
| self.google_sheets.overwrite_sheet(spreadsheet_id_a, test_table_a) | ||
|
|
||
| spreadsheet_id_b = self.google_sheets.create_spreadsheet("parsons_test_02") | ||
| test_table_b = Table( | ||
| [ | ||
| {"first": "Ted", "last": "Smith"}, | ||
| {"first": "Susan", "last": "Kerry"}, | ||
| ] | ||
| ) | ||
| self.google_sheets.overwrite_sheet(spreadsheet_id_b, test_table_b) | ||
|
|
||
| combined_data = self.google_sheets.combine_multiple_sheet_data( | ||
| [spreadsheet_id_a, spreadsheet_id_b] | ||
| ) | ||
|
|
||
| self.assertEqual( | ||
| combined_data.num_rows, test_table_a.num_rows + test_table_b.num_rows | ||
| ) | ||
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.
Uh oh!
There was an error while loading. Please reload this page.