From 0e01c1cc03aca657a546a8be1e84c67117cc5802 Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Sat, 23 Nov 2024 16:24:25 +0200 Subject: [PATCH] Update test_general.py --- tests/parser/test_general.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/parser/test_general.py b/tests/parser/test_general.py index 386680a..1f0dfe2 100644 --- a/tests/parser/test_general.py +++ b/tests/parser/test_general.py @@ -278,7 +278,7 @@ def test_performance(self): self.assertEqual(len(elements), 5000) # Converting 5000 elements to a class and doing operations on them will take time # Based on my tests with 100 runs, 1 loop each Scrapling (given the extra work/features) takes 10.4ms on average - self.assertLess(end_time - start_time, 0.2) + self.assertLess(end_time - start_time, 0.5) # Locally I test on 0.1 but on GitHub actions with browsers and threading sometimes closing adds fractions of seconds # Use `coverage run -m unittest --verbose tests/test_parser_functions.py` instead for the coverage report