Increasing the time a little bit for the performance test

It's prolonged on GitHub Actions for obvious reasons
This commit is contained in:
Karim shoair
2024-11-23 16:12:00 +02:00
parent 2b925b4a33
commit e7f2a83e16
+1 -1
View File
@@ -278,7 +278,7 @@ class TestParser(unittest.TestCase):
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.1)
self.assertLess(end_time - start_time, 0.2)
# Use `coverage run -m unittest --verbose tests/test_parser_functions.py` instead for the coverage report