From 7427c44517dd0b2a58a88b6244b59308516f6b30 Mon Sep 17 00:00:00 2001 From: Micheal Angelo Date: Fri, 2 Jan 2026 19:34:25 +0530 Subject: [PATCH] Add pytest-order to file-processing-python requirements pytest-order is used via @pytest.mark.order in test_pdf_encrypt.py and registered in pytest.ini, but was missing from requirements.txt. --- sample-apps/file-processing-python/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sample-apps/file-processing-python/requirements.txt b/sample-apps/file-processing-python/requirements.txt index e7c65556..f677c1a0 100644 --- a/sample-apps/file-processing-python/requirements.txt +++ b/sample-apps/file-processing-python/requirements.txt @@ -1,2 +1,3 @@ boto3 -pypdf \ No newline at end of file +pypdf +pytest-order