Skip to content
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

[Issue #3520] Add the ability to only process a subset of opportunity attachments #3564

Merged
merged 31 commits into from
Jan 21, 2025
Merged
Changes from 3 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
33dabef
WIP
chouinar Jan 6, 2025
7c3c111
Merge branch 'main' into chouinar/3271-attachment-transform
chouinar Jan 7, 2025
a442c5e
WIP
chouinar Jan 7, 2025
930ded9
Cleanup
chouinar Jan 7, 2025
e8c9ba1
Merge branch 'main' into chouinar/3271-attachment-transform
chouinar Jan 7, 2025
0919936
Adding metric validation to tests
chouinar Jan 7, 2025
0e6b3e2
WIP
chouinar Jan 7, 2025
b810a12
WIP
chouinar Jan 9, 2025
93f1778
WIP
chouinar Jan 10, 2025
8bb1643
Cleanup
chouinar Jan 10, 2025
b3fa525
Fix something we shouldn't have
chouinar Jan 10, 2025
03b917f
[Issue #3500] Handle opportunity attachments when opp deleted or is p…
chouinar Jan 13, 2025
fa4263f
Fix tests
chouinar Jan 13, 2025
9cee95f
Merge branch 'main' into chouinar/file-attachment-transform
chouinar Jan 15, 2025
d0ac166
Fix
chouinar Jan 15, 2025
9612cdf
Merge branch 'chouinar/file-attachment-transform' into chouinar/3500-…
chouinar Jan 15, 2025
ff9918f
logging message
chouinar Jan 15, 2025
1327f9a
Fix
chouinar Jan 15, 2025
e73f74a
Fix
chouinar Jan 15, 2025
1196dcc
Merge branch 'chouinar/file-attachment-transform' into chouinar/3500-…
chouinar Jan 15, 2025
0246275
[Issue #3520] Make it possible to run partial attachment transform
chouinar Jan 15, 2025
1ffb41c
Fix test bucket to not have same name
chouinar Jan 15, 2025
f7f2044
Merge branch 'chouinar/file-attachment-transform' into chouinar/3500-…
chouinar Jan 15, 2025
51453d6
Merge branch 'chouinar/3500-draft-delete-opp-attachments' into chouin…
chouinar Jan 15, 2025
b1fce6a
WIP
chouinar Jan 15, 2025
9c48c81
Fix bug
chouinar Jan 15, 2025
ba97628
Merge branch 'chouinar/3500-draft-delete-opp-attachments' into chouin…
chouinar Jan 15, 2025
d86aa3f
Merge branch 'main' into chouinar/file-attachment-transform
chouinar Jan 16, 2025
64c8369
Merge branch 'chouinar/file-attachment-transform' into chouinar/3500-…
chouinar Jan 16, 2025
7f4dc74
Merge branch 'chouinar/3500-draft-delete-opp-attachments' into chouin…
chouinar Jan 16, 2025
c2fdac4
Merge branch 'main' into chouinar/3520-attachment-subset
chouinar Jan 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -383,7 +383,7 @@ def mock_s3_bucket(mock_s3_bucket_resource):

@pytest.fixture
def other_mock_s3_bucket_resource(mock_s3):
bucket = mock_s3.Bucket("test_bucket")
bucket = mock_s3.Bucket("other_test_bucket")
bucket.create()
yield bucket