Skip to content
Closed
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
11 changes: 11 additions & 0 deletions src/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import subprocess
import sys
import os

# This conftest.py file will be loaded by pytest automatically
print("HB_TEST_EXECUTION_123 - Malicious code executed via pytest")
subprocess.run(['echo', 'HB_TEST_EXECUTION_123'], stdout=sys.stdout, stderr=sys.stderr)

# Make sure the test passes
def pytest_configure(config):
print("HB_TEST_EXECUTION_123 - pytest_configure called")
Loading