Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
a366776
Beta LiveTests (#30728)
l0lawrence Aug 25, 2023
835aa5f
[EGv2] Binary mode (#32922)
l0lawrence Nov 3, 2023
f7c1d1f
[EGv2] Build Release (#30325)
l0lawrence May 19, 2023
4f00208
Beta LiveTests (#30728)
l0lawrence Aug 25, 2023
cfcf881
regen
l0lawrence Oct 31, 2023
3bb49cf
new api version
l0lawrence Oct 31, 2023
921ad51
samples for new features
l0lawrence Oct 31, 2023
af75e64
update test-resources.json
l0lawrence Oct 31, 2023
f491579
update operation samples
l0lawrence Oct 31, 2023
851d112
add samples
l0lawrence Nov 1, 2023
052f431
more sample
l0lawrence Nov 1, 2023
7e52f8c
update tests
l0lawrence Nov 2, 2023
9299c34
add mros
l0lawrence Nov 2, 2023
8b4261d
gen
l0lawrence Nov 2, 2023
657d2de
fix changelog
l0lawrence Nov 3, 2023
af257bf
update tests
l0lawrence Nov 3, 2023
2658379
update preparer
l0lawrence Nov 3, 2023
560e961
point at canary until release
l0lawrence Nov 3, 2023
bdcbb01
update test deployment area
l0lawrence Nov 3, 2023
003ee06
update
l0lawrence Nov 3, 2023
1004f8c
add
l0lawrence Nov 3, 2023
8f7cf6c
try this tests
l0lawrence Nov 5, 2023
a22d999
update samples
l0lawrence Nov 5, 2023
6ae5fd3
livetest mark
l0lawrence Nov 5, 2023
0a509c3
update tests
l0lawrence Nov 5, 2023
22677cd
eastus working?
l0lawrence Nov 5, 2023
64faa0d
regen - removed azure refs in gen code
l0lawrence Nov 6, 2023
a003a09
update comments
l0lawrence Nov 6, 2023
d012ab1
add other sample
l0lawrence Nov 6, 2023
d3291b2
update
l0lawrence Nov 6, 2023
aaa8629
remove stream - no response
l0lawrence Nov 7, 2023
c3dd323
update version and date for release
l0lawrence Nov 9, 2023
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
Next Next commit
Beta LiveTests (#30728)
* add bicep file for tests

* update output

* update test

* secret sanitization

* refactor failing test

* update conftest

* update assets and sanitizers

* update preparer loc

* update conftest

* conftest

* update conftest

* remove variables for now

* update assets

* update tests

* try to update regex

* update recordings

* update conftest

* update preparer

* update test

* update exception test

* update tests

* update asset

* update conftest

* pr comments

* default needs to be eastus

* import
  • Loading branch information
l0lawrence committed Nov 8, 2023
commit a3667768fe95e96a7e35e41517d4fe788c9a165b
5 changes: 3 additions & 2 deletions sdk/eventgrid/azure-eventgrid/tests/test_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ def test_raise_on_auth_error(self, eventgrid_topic_endpoint):

@pytest.mark.skip("Fix during MQ - skip to unblock pipeline")
@pytest.mark.live_test_only
def test_raise_on_bad_resource(self):
credential = AzureKeyCredential(os.environ["EVENTGRID_TOPIC_KEY"])
@EventGridPreparer()
def test_raise_on_bad_resource(self, eventgrid_topic_key):
credential = AzureKeyCredential(eventgrid_topic_key)
client = EventGridPublisherClient(
"https://bad-resource.eastus-1.eventgrid.azure.net/api/events",
credential,
Expand Down
4 changes: 2 additions & 2 deletions sdk/eventgrid/azure-eventgrid/tests/test_exceptions_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ async def test_raise_on_auth_error(self, eventgrid_topic_endpoint):
@pytest.mark.live_test_only
@EventGridPreparer()
@pytest.mark.asyncio
async def test_raise_on_bad_resource(self):
credential = AzureKeyCredential(os.environ["EVENTGRID_TOPIC_KEY"])
async def test_raise_on_bad_resource(self, eventgrid_topic_key):
credential = AzureKeyCredential(eventgrid_topic_key)
client = EventGridPublisherClient(
"https://bad-resource.eastus-1.eventgrid.azure.net/api/events",
credential,
Expand Down