1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
|
import os
import pytest
try:
import hypothesis
except ImportError:
hypothesis = None
def test_default_threads(pytester):
"""Make sure that pytest accepts our fixture."""
# create a temporary pytest test module
pytester.makepyfile("""
import pytest
from threading import Lock
class Counter:
def __init__(self):
self._count = 0
self._lock = Lock()
def increase(self):
with self._lock:
self._count += 1
@pytest.fixture(scope='session')
def counter():
return Counter()
@pytest.mark.order(1)
def test_thread_increase(counter):
counter.increase()
@pytest.mark.order(2)
@pytest.mark.parallel_threads(1)
def test_check_thread_count(counter):
assert counter._count == 10
""")
# run pytest with the following cmd args
result = pytester.runpytest("--parallel-threads=10", "-v")
# fnmatch_lines does an assertion internally
result.stdout.fnmatch_lines(
[
"*::test_check_thread_count PASSED*",
]
)
# make sure that we get a '0' exit code for the testsuite
assert result.ret == 0
def test_marker(pytester):
# create a temporary pytest test module
pytester.makepyfile("""
import pytest
from threading import Lock
class Counter:
def __init__(self):
self._count = 0
self._lock = Lock()
def increase(self):
with self._lock:
self._count += 1
@pytest.fixture(scope='session')
def counter():
return Counter()
@pytest.fixture(scope='session')
def counter2():
return Counter()
@pytest.mark.order(1)
def test_thread_increase(counter):
counter.increase()
@pytest.mark.order(1)
@pytest.mark.parallel_threads(5)
def test_thread_increase_five(counter2):
counter2.increase()
@pytest.mark.order(2)
@pytest.mark.parallel_threads(1)
def test_check_thread_count(counter):
assert counter._count == 10
@pytest.mark.order(2)
@pytest.mark.parallel_threads(1)
def test_check_thread_count2(counter2):
assert counter2._count == 5
""")
# run pytest with the following cmd args
result = pytester.runpytest("--parallel-threads=10", "-v")
# fnmatch_lines does an assertion internally
result.stdout.fnmatch_lines(
[
"*::test_check_thread_count PASSED*",
"*::test_check_thread_count2 PASSED*",
]
)
# make sure that we get a '0' exit code for the testsuite
assert result.ret == 0
def test_unittest_compat(pytester):
# create a temporary pytest test module
pytester.makepyfile("""
import pytest
import unittest
from threading import Lock
class Counter:
def __init__(self):
self._count = 0
self._lock = Lock()
def increase(self):
with self._lock:
self._count += 1
class TestExample(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.counter = Counter()
cls.counter2 = Counter()
@pytest.mark.order(1)
def test_example_1(self):
self.counter.increase()
@pytest.mark.order(1)
@pytest.mark.parallel_threads(5)
def test_example_2(self):
self.counter2.increase()
@pytest.mark.order(2)
@pytest.mark.parallel_threads(1)
def test_check_thread_count(self):
assert self.counter._count == 10
@pytest.mark.order(2)
@pytest.mark.parallel_threads(1)
def test_check_thread_count2(self):
assert self.counter2._count == 5
""")
# run pytest with the following cmd args
result = pytester.runpytest("--parallel-threads=10", "-v")
# fnmatch_lines does an assertion internally
result.stdout.fnmatch_lines(
[
"*::test_check_thread_count PASSED*",
"*::test_check_thread_count2 PASSED*",
]
)
# make sure that we get a '0' exit code for the testsuite
assert result.ret == 0
def test_help_message(pytester):
result = pytester.runpytest(
"--help",
)
# fnmatch_lines does an assertion internally
result.stdout.fnmatch_lines(
[
"run-parallel:",
" --parallel-threads=PARALLEL_THREADS",
" --iterations=ITERATIONS",
]
)
def test_skip(pytester):
"""Make sure that pytest accepts our fixture."""
# create a temporary pytest test module
pytester.makepyfile("""
import pytest
def test_skipped():
pytest.skip('Skip propagation')
""")
# run pytest with the following cmd args
result = pytester.runpytest("--parallel-threads=10", "-v")
# fnmatch_lines does an assertion internally
result.stdout.fnmatch_lines(
[
"*::test_skipped SKIPPED*",
]
)
# make sure that we get a '0' exit code for the testsuite
assert result.ret == 0
def test_fail(pytester):
"""Make sure that pytest accepts our fixture."""
# create a temporary pytest test module
pytester.makepyfile("""
import pytest
def test_should_fail():
pytest.fail()
""")
# run pytest with the following cmd args
result = pytester.runpytest("--parallel-threads=10", "-v")
# fnmatch_lines does an assertion internally
result.stdout.fnmatch_lines(
[
"*::test_should_fail PARALLEL FAILED*",
]
)
# make sure that we get a '0' exit code for the testsuite
assert result.ret != 0
def test_exception(pytester):
"""Make sure that pytest accepts our fixture."""
# create a temporary pytest test module
pytester.makepyfile("""
import pytest
def test_should_fail():
raise ValueError('Should raise')
""")
# run pytest with the following cmd args
result = pytester.runpytest("--parallel-threads=10", "-v")
# fnmatch_lines does an assertion internally
result.stdout.fnmatch_lines(
[
"*::test_should_fail PARALLEL FAILED*",
]
)
# make sure that we get a '0' exit code for the testsuite
assert result.ret != 0
def test_num_parallel_threads_fixture(pytester):
"""Test that the num_parallel_threads fixture works as expected."""
# create a temporary pytest test module
pytester.makepyfile("""
import pytest
def test_should_yield_global_threads(num_parallel_threads):
assert num_parallel_threads == 10
@pytest.mark.parallel_threads(2)
def test_should_yield_marker_threads(num_parallel_threads):
assert num_parallel_threads == 2
@pytest.mark.parallel_threads(1)
def test_single_threaded(num_parallel_threads):
assert num_parallel_threads == 1
""")
# run pytest with the following cmd args
result = pytester.runpytest("--parallel-threads=10", "-v")
# fnmatch_lines does an assertion internally
result.stdout.fnmatch_lines(
[
"*::test_should_yield_global_threads PARALLEL PASSED*",
"*::test_should_yield_marker_threads PARALLEL PASSED*",
"*::test_single_threaded PASSED*",
"*1 test was not run in parallel because of use of "
"thread-unsafe functionality, to list the tests that "
"were not run in parallel, re-run while setting PYTEST_RUN_PARALLEL_VERBOSE=1"
" in your shell environment",
]
)
# Re-run with verbose output
orig = os.environ.get("PYTEST_RUN_PARALLEL_VERBOSE", "0")
os.environ["PYTEST_RUN_PARALLEL_VERBOSE"] = "1"
result = pytester.runpytest("--parallel-threads=10", "-v")
os.environ["PYTEST_RUN_PARALLEL_VERBOSE"] = orig
result.stdout.fnmatch_lines(
["*pytest-run-parallel report*", "*::test_single_threaded*"],
consecutive=True,
)
def test_iterations_marker_one_thread(pytester):
# create a temporary pytest test module
pytester.makepyfile("""
import pytest
from threading import Lock
class Counter:
def __init__(self):
self._count = 0
self._lock = Lock()
def increase(self):
with self._lock:
self._count += 1
@pytest.fixture(scope='session')
def counter():
return Counter()
@pytest.mark.order(1)
@pytest.mark.parallel_threads(1)
@pytest.mark.iterations(10)
def test_thread_increase(counter):
counter.increase()
@pytest.mark.order(2)
@pytest.mark.parallel_threads(1)
@pytest.mark.iterations(1)
def test_check_thread_count(counter):
assert counter._count == 10
""")
# run pytest with the following cmd args
result = pytester.runpytest("-v")
# fnmatch_lines does an assertion internally
result.stdout.fnmatch_lines(
[
"*::test_check_thread_count PASSED*",
]
)
# make sure that we get a '0' exit code for the testsuite
assert result.ret == 0
def test_iterations_config_one_thread(pytester):
# create a temporary pytest test module
pytester.makepyfile("""
import pytest
from threading import Lock
class Counter:
def __init__(self):
self._count = 0
self._lock = Lock()
def increase(self):
with self._lock:
self._count += 1
@pytest.fixture(scope='session')
def counter():
return Counter()
@pytest.mark.order(1)
@pytest.mark.parallel_threads(1)
def test_thread_increase(counter):
counter.increase()
@pytest.mark.order(2)
@pytest.mark.parallel_threads(1)
@pytest.mark.iterations(1)
def test_check_thread_count(counter):
assert counter._count == 10
""")
# run pytest with the following cmd args
result = pytester.runpytest("--iterations=10", "-v")
# fnmatch_lines does an assertion internally
result.stdout.fnmatch_lines(
[
"*::test_check_thread_count PASSED*",
]
)
# make sure that we get a '0' exit code for the testsuite
assert result.ret == 0
def test_multiple_iterations_multiple_threads(pytester):
# create a temporary pytest test module
pytester.makepyfile("""
import pytest
from threading import Lock
class Counter:
def __init__(self):
self._count = 0
self._lock = Lock()
def increase(self):
with self._lock:
self._count += 1
@pytest.fixture(scope='session')
def counter():
return Counter()
@pytest.mark.order(1)
@pytest.mark.parallel_threads(10)
@pytest.mark.iterations(10)
def test_thread_increase(counter):
counter.increase()
@pytest.mark.order(2)
@pytest.mark.parallel_threads(1)
@pytest.mark.iterations(1)
def test_check_thread_count(counter):
assert counter._count == 10 * 10
""")
# run pytest with the following cmd args
result = pytester.runpytest("-v")
# fnmatch_lines does an assertion internally
result.stdout.fnmatch_lines(
[
"*::test_check_thread_count PASSED*",
]
)
# make sure that we get a '0' exit code for the testsuite
assert result.ret == 0
def test_num_iterations_fixture(pytester):
"""Test that the num_iterations fixture works as expected."""
# create a temporary pytest test module
pytester.makepyfile("""
import pytest
def test_should_yield_global_threads(num_iterations):
assert num_iterations == 10
@pytest.mark.iterations(2)
def test_should_yield_marker_threads(num_iterations):
assert num_iterations == 2
""")
# run pytest with the following cmd args
result = pytester.runpytest("--iterations=10", "-v")
# fnmatch_lines does an assertion internally
result.stdout.fnmatch_lines(
[
"*::test_should_yield_global_threads PASSED*",
"*::test_should_yield_marker_threads PASSED*",
]
)
def test_skipif_marker_works(pytester):
# create a temporary pytest test module
pytester.makepyfile("""
import pytest
VAR = 1
@pytest.mark.skipif('VAR == 1', reason='VAR is 1')
def test_should_skip():
pass
""")
# run pytest with the following cmd args
result = pytester.runpytest("--parallel-threads=10", "-v")
# fnmatch_lines does an assertion internally
result.stdout.fnmatch_lines(
[
"*::test_should_skip SKIPPED*",
]
)
def test_incompatible_test_item(pytester):
pytester.makeconftest("""
import inspect
import pytest
class CustomItem(pytest.Item):
def __init__(self, name, parent=None, config=None, session=None, nodeid=None, function=None, **kwargs):
super().__init__(name, parent, config, session, nodeid, **kwargs)
self.function = function
def runtest(self):
self.function()
@pytest.hookimpl(wrapper=True, trylast=True)
def pytest_pycollect_makeitem(collector, name: str, obj: object):
result = yield
if not inspect.isfunction(obj):
return result
return CustomItem.from_parent(name=name, parent=collector, function=obj)
""")
pytester.makepyfile("""
import pytest
def test_incompatible_item():
assert True
""")
result = pytester.runpytest("--parallel-threads=10", "-v")
result.stdout.fnmatch_lines(
[
"*::test_incompatible_item PASSED*",
]
)
assert result.parseoutcomes()["warnings"] == 1
def test_known_incompatible_test_item_doesnt_warn(pytester):
pytester.makeconftest("""
import inspect
import pytest
class CustomItem(pytest.Item):
def __init__(self, name, parent=None, config=None, session=None, nodeid=None, function=None, **kwargs):
super().__init__(name, parent, config, session, nodeid, **kwargs)
self.function = function
self._parallel_custom_item = True
def runtest(self):
self.function()
@pytest.hookimpl(wrapper=True, trylast=True)
def pytest_pycollect_makeitem(collector, name: str, obj: object):
result = yield
if not inspect.isfunction(obj):
return result
return CustomItem.from_parent(name=name, parent=collector, function=obj)
""")
pytester.makepyfile("""
import pytest
def test_incompatible_item():
assert True
""")
result = pytester.runpytest("--parallel-threads=10", "-v")
result.stdout.fnmatch_lines(
[
"*::test_incompatible_item PASSED*",
]
)
result.stderr.no_fnmatch_line(
"*Encountered pytest item with type <class 'conftest.CustomItem'> "
"with no 'obj'*"
)
assert "warnings" not in result.parseoutcomes().keys()
def test_all_tests_in_parallel(pytester):
pytester.makepyfile("""
def test_parallel_1(num_parallel_threads):
assert num_parallel_threads == 10
def test_parallel_2(num_parallel_threads):
assert num_parallel_threads == 10
""")
result = pytester.runpytest("--parallel-threads=10", "-v")
result.stdout.fnmatch_lines(
[
"*All tests were run in parallel! 🎉*",
]
)
# re-run with PYTEST_RUN_PARALLEL_VERBOSE=1
orig = os.environ.get("PYTEST_RUN_PARALLEL_VERBOSE", "0")
os.environ["PYTEST_RUN_PARALLEL_VERBOSE"] = "1"
result = pytester.runpytest("--parallel-threads=10", "-v")
os.environ["PYTEST_RUN_PARALLEL_VERBOSE"] = orig
result.stdout.fnmatch_lines(
[
"*All tests were run in parallel! 🎉*",
]
)
def test_doctests_marked_thread_unsafe(pytester):
pytester.makepyfile("""
def test_parallel(num_parallel_threads):
assert num_parallel_threads == 10
""")
pytester.makefile(
".txt",
"""
hello this is a doctest
>>> x = 3
>>> x
3
>>> num_parallel_threads = getfixture("num_parallel_threads")
>>> num_parallel_threads
1
""",
)
result = pytester.runpytest("--parallel-threads=10", "-v")
result.stdout.fnmatch_lines(
[
"*::test_parallel PARALLEL PASSED*",
"*::test_doctests_marked_thread_unsafe.txt PASSED*",
]
)
@pytest.mark.skipif(hypothesis is None, reason="hypothesis needs to be installed")
def test_runs_hypothesis_in_parallel(pytester):
pytester.makepyfile("""
from hypothesis import given, strategies as st, settings, HealthCheck
@given(a=st.none())
@settings(suppress_health_check=[HealthCheck.function_scoped_fixture])
def test_uses_hypothesis(a, num_parallel_threads):
assert num_parallel_threads == 10
""")
result = pytester.runpytest("--parallel-threads=10", "-v")
result.stdout.fnmatch_lines(
[
"*::test_uses_hypothesis PARALLEL PASSED*",
]
)
def test_fail_warning_gil_enabled_during_execution(pytester):
test_name = "test_fail_warning_gil_enabled_during_execution"
pytester.makepyfile(f"""
import warnings
def {test_name}():
warnings.warn(
"The global interpreter lock (GIL) has been enabled to load module 'module'",
RuntimeWarning
)
""")
result = pytester.runpytest("-v")
assert result.ret == 1
result.stdout.fnmatch_lines(
[
f"*GIL was dynamically re-enabled during test execution of '{test_name}.py::{test_name}' to load module 'module'*"
]
)
def test_fail_warning_gil_enabled_during_collection(pytester):
test_name = "test_fail_warning_gil_enabled_during_collection"
pytester.makepyfile(f"""
import warnings
warnings.warn(
"The global interpreter lock (GIL) has been enabled to load module 'module'",
RuntimeWarning
)
def {test_name}():
assert True
""")
result = pytester.runpytest("-v")
assert result.ret == 1
result.stdout.fnmatch_lines(
[
"*GIL was dynamically re-enabled during test collection to load module 'module'*"
]
)
def test_warning_gil_enabled_ignore_option(pytester):
pytester.makepyfile("""
import warnings
warnings.warn(
"The global interpreter lock (GIL) has been enabled to load module 'module'",
RuntimeWarning
)
def test_warning_gil_enabled_ignore_option():
assert True
""")
result = pytester.runpytest("-v", "--ignore-gil-enabled")
assert result.ret == 0
|