1 py$(PYV): remove tox env folder $(@D)/.tox/py$(PYV)
2 py$(PYV): commands[0]> python -W error::ResourceWarning -W error::DeprecationWarning -W error::PendingDeprecationWarning -W 'ignore:pkg_resources is deprecated as an API:DeprecationWarning' -W 'ignore:datetime.datetime.utcfromtimestamp() is deprecated:DeprecationWarning' -m coverage run -m pytest -p no:randomly tests
3 ============================= test session starts ==============================
4 platform sunos5 -- Python $(PYTHON_VERSION).X -- $(@D)/.tox/py$(PYV)/bin/python
5 cachedir: .tox/py$(PYV)/.pytest_cache
7 configfile: pyproject.toml
8 collecting ... collected 37 items
10 tests/test_pytest_randomly.py::test_it_reports_a_header_when_not_set PASSED
11 tests/test_pytest_randomly.py::test_it_reports_a_header_when_set PASSED
12 tests/test_pytest_randomly.py::test_it_reuses_the_same_random_seed_per_test PASSED
13 tests/test_pytest_randomly.py::test_without_cacheprovider PASSED
14 tests/test_pytest_randomly.py::test_using_last_seed PASSED
15 tests/test_pytest_randomly.py::test_using_last_explicit_seed PASSED
16 tests/test_pytest_randomly.py::test_passing_nonsense_for_randomly_seed PASSED
17 tests/test_pytest_randomly.py::test_it_resets_the_random_seed_at_the_start_of_test_classes PASSED
18 tests/test_pytest_randomly.py::test_it_resets_the_random_seed_at_the_end_of_test_classes PASSED
19 tests/test_pytest_randomly.py::test_the_same_random_seed_per_test_can_be_turned_off PASSED
20 tests/test_pytest_randomly.py::test_files_reordered PASSED
21 tests/test_pytest_randomly.py::test_files_reordered_when_seed_not_reset PASSED
22 tests/test_pytest_randomly.py::test_classes_reordered PASSED
23 tests/test_pytest_randomly.py::test_class_test_methods_reordered PASSED
24 tests/test_pytest_randomly.py::test_test_functions_reordered PASSED
25 tests/test_pytest_randomly.py::test_test_functions_reordered_when_randomness_in_module PASSED
26 tests/test_pytest_randomly.py::test_doctests_reordered PASSED
27 tests/test_pytest_randomly.py::test_it_works_with_the_simplest_test_items PASSED
28 tests/test_pytest_randomly.py::test_doctests_in_txt_files_reordered PASSED
29 tests/test_pytest_randomly.py::test_it_runs_before_stepwise PASSED
30 tests/test_pytest_randomly.py::test_fixtures_get_different_random_state_to_tests PASSED
31 tests/test_pytest_randomly.py::test_fixtures_dont_interfere_with_tests_getting_same_random_state PASSED
32 tests/test_pytest_randomly.py::test_factory_boy PASSED
33 tests/test_pytest_randomly.py::test_faker PASSED
34 tests/test_pytest_randomly.py::test_faker_fixture PASSED
35 tests/test_pytest_randomly.py::test_model_bakery SKIPPED (model_bake...)
36 tests/test_pytest_randomly.py::test_numpy PASSED
37 tests/test_pytest_randomly.py::test_numpy_doesnt_crash_with_large_seed PASSED
38 tests/test_pytest_randomly.py::test_failing_import PASSED
39 tests/test_pytest_randomly.py::test_entrypoint_injection PASSED
40 tests/test_pytest_randomly.py::test_entrypoint_missing PASSED
41 tests/test_pytest_randomly.py::test_works_without_xdist PASSED
42 tests/test_pytest_randomly.py::test_xdist[0] PASSED
43 tests/test_pytest_randomly.py::test_xdist[1] PASSED
44 tests/test_pytest_randomly.py::test_xdist[2] PASSED
45 tests/test_pytest_randomly.py::test_xdist[3] PASSED
46 tests/test_pytest_randomly.py::test_xdist[4] PASSED
48 ======== 36 passed, 1 skipped ========