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

Disable package tests for end2end #259

Merged
merged 2 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 3 additions & 2 deletions end2end/server/check_events_from_mock.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ def validate_started_event(event, stack, dry_mode=False, serverless=False, os_na
assert event["agent"]["os"]["name"] == os_name
assert event["agent"]["platform"]["name"] == platform
assert event["agent"]["serverless"] == serverless
if stack is not None:
assert set(event["agent"]["stack"]) == set(stack)
# # Check for packages is disabled until we start using them in core :
# if stack is not None:
# assert set(event["agent"]["stack"]) == set(stack)

def validate_heartbeat(event, routes, req_stats):
assert event["type"] == "heartbeat"
Expand Down
10 changes: 6 additions & 4 deletions sample-apps/quart-postgres-uvicorn/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
quart
asyncpg
cryptography
uvicorn
quart==0.17.0
asyncpg==0.27.0
cryptography==39.0.1
uvicorn==0.22.0
Flask==2.3.0
Werkzeug==2.3.0
Loading