Skip to content

Commit

Permalink
Merge pull request #259 from AikidoSec/disable-package-tests-on-end2end
Browse files Browse the repository at this point in the history
Disable package tests for end2end
  • Loading branch information
willem-delbare authored Nov 18, 2024
2 parents b13ccc0 + 5ba27e3 commit 97fb2ac
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
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

0 comments on commit 97fb2ac

Please sign in to comment.