├── .coveragerc ├── .flake8 ├── .github ├── dependabot.yml └── workflows │ ├── build.yaml │ └── test-on-downstream-projects.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── RELEASING.md ├── changelog.rst ├── contributing.rst ├── docs ├── Makefile ├── changelog.rst ├── conf.py ├── configuration.rst ├── contents.rst.inc ├── decorators.rst ├── dev │ ├── contributing.rst │ ├── documenting_plugins.rst │ ├── event_reference.rst │ ├── exceptions.rst │ ├── hook_reference.rst │ ├── internals.rst │ ├── loader.rst │ ├── main.rst │ ├── plugin_class_reference.rst │ ├── result.rst │ ├── runner.rst │ ├── session_reference.rst │ ├── utils.rst │ └── writing_plugins.rst ├── differences.rst ├── getting_started.rst ├── index.rst ├── make.bat ├── params.rst ├── plugins.rst ├── plugins │ ├── attrib.rst │ ├── attrib_example.py │ ├── buffer.rst │ ├── collect.rst │ ├── coverage.rst │ ├── debugger.rst │ ├── discovery.rst │ ├── doctests.rst │ ├── dundertests.rst │ ├── eggdiscovery.rst │ ├── failfast.rst │ ├── functions.rst │ ├── generators.rst │ ├── junitxml.rst │ ├── layers.rst │ ├── loadtests.rst │ ├── logcapture.rst │ ├── mp.rst │ ├── outcomes.rst │ ├── parameters.rst │ ├── prettyassert.rst │ ├── printhooks.rst │ ├── prof.rst │ ├── result.rst │ ├── testcases.rst │ ├── testclasses.rst │ └── testid.rst ├── such_dsl.rst ├── tools.rst └── usage.rst ├── nose2 ├── __init__.py ├── __main__.py ├── _toml.py ├── collector.py ├── config.py ├── events.py ├── exceptions.py ├── loader.py ├── main.py ├── plugins │ ├── __init__.py │ ├── _constants.py │ ├── attrib.py │ ├── buffer.py │ ├── collect.py │ ├── coverage.py │ ├── debugger.py │ ├── doctests.py │ ├── dundertest.py │ ├── failfast.py │ ├── junitxml.py │ ├── layers.py │ ├── loader │ │ ├── __init__.py │ │ ├── discovery.py │ │ ├── eggdiscovery.py │ │ ├── functions.py │ │ ├── generators.py │ │ ├── loadtests.py │ │ ├── parameters.py │ │ ├── testcases.py │ │ └── testclasses.py │ ├── logcapture.py │ ├── mp.py │ ├── outcomes.py │ ├── prettyassert.py │ ├── printhooks.py │ ├── prof.py │ ├── result.py │ └── testid.py ├── result.py ├── runner.py ├── session.py ├── sphinxext.py ├── suite.py ├── tests │ ├── __init__.py │ ├── _common.py │ ├── functional │ │ ├── __init__.py │ │ ├── support │ │ │ ├── cfg │ │ │ │ ├── a.cfg │ │ │ │ └── b.cfg │ │ │ ├── lib │ │ │ │ ├── layer_hooks_plugin.py │ │ │ │ └── plugin_a.py │ │ │ ├── scenario │ │ │ │ ├── class_fixtures │ │ │ │ │ └── test_cf_testcase.py │ │ │ │ ├── colliding_test_modules │ │ │ │ │ └── tests │ │ │ │ │ │ ├── more_tests │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── test.py │ │ │ │ ├── coverage_config_fail_under │ │ │ │ │ ├── .coveragerc │ │ │ │ │ ├── covered_lib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── mod1.py │ │ │ │ │ └── test_mod.py │ │ │ │ ├── coverage_config_fail_under2 │ │ │ │ │ ├── .coveragerc │ │ │ │ │ ├── nose2.cfg │ │ │ │ │ ├── part_covered_lib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── mod1.py │ │ │ │ │ └── test_part_covered_mod.py │ │ │ │ ├── coverage_multiprocessing_with_combine │ │ │ │ │ ├── .coveragerc │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── mod1.py │ │ │ │ │ ├── nose2.cfg │ │ │ │ │ └── test_lib.py │ │ │ │ ├── coverage_multiprocessing_without_combine │ │ │ │ │ ├── .coveragerc │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── mod1.py │ │ │ │ │ ├── nose2.cfg │ │ │ │ │ └── test_lib.py │ │ │ │ ├── coverage_of_imports │ │ │ │ │ ├── lib20171102 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── mod1.py │ │ │ │ │ └── test_import_coverage.py │ │ │ │ ├── decorators │ │ │ │ │ └── test_decorators.py │ │ │ │ ├── doctests │ │ │ │ │ ├── docs.py │ │ │ │ │ ├── docs.rst │ │ │ │ │ ├── docs.txt │ │ │ │ │ └── doctests_pkg1 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── docs1.py │ │ │ │ │ │ ├── docs1.rst │ │ │ │ │ │ └── docs1.txt │ │ │ │ ├── dundertest_attribute │ │ │ │ │ └── test.py │ │ │ │ ├── expected_failures │ │ │ │ │ └── expected_failures.py │ │ │ │ ├── junitxml │ │ │ │ │ ├── chdir │ │ │ │ │ │ └── test_junitxml_chdir.py │ │ │ │ │ ├── empty_properties │ │ │ │ │ │ ├── properties.json │ │ │ │ │ │ ├── test_junitxml_empty_properties.py │ │ │ │ │ │ └── unittest.cfg │ │ │ │ │ ├── fail_to_write │ │ │ │ │ │ ├── test_junitxml_fail_to_write.py │ │ │ │ │ │ └── unittest.cfg │ │ │ │ │ ├── happyday │ │ │ │ │ │ └── test_junitxml_happyday.py │ │ │ │ │ ├── missing_properties │ │ │ │ │ │ ├── test_junitxml_missing_properties.py │ │ │ │ │ │ └── unittest.cfg │ │ │ │ │ ├── non_default_path │ │ │ │ │ │ ├── test_junitxml_non_default_path.py │ │ │ │ │ │ └── unittest.cfg │ │ │ │ │ ├── skip_reason │ │ │ │ │ │ ├── test_junitxml_skip_reason.py │ │ │ │ │ │ └── unittest.cfg │ │ │ │ │ └── with_properties │ │ │ │ │ │ ├── test_junitxml_with_properties.py │ │ │ │ │ │ └── unittest.cfg │ │ │ │ ├── layers │ │ │ │ │ └── test_layers.py │ │ │ │ ├── layers_and_attributes │ │ │ │ │ └── test_layers_and_attributes.py │ │ │ │ ├── layers_and_non_layers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── common.py │ │ │ │ │ ├── test_layers.py │ │ │ │ │ ├── test_such_with_has_setup.py │ │ │ │ │ └── test_such_with_uses_decorator.py │ │ │ │ ├── layers_hooks │ │ │ │ │ ├── test_layers_simple.py │ │ │ │ │ └── test_simple_such.py │ │ │ │ ├── layers_setups │ │ │ │ │ ├── higher_layer_setup.py │ │ │ │ │ ├── higher_layer_testsetup_3layers.py │ │ │ │ │ ├── higher_layer_testsetup_no_test.py │ │ │ │ │ └── higher_layer_testsetup_with_test.py │ │ │ │ ├── layers_with_errors │ │ │ │ │ ├── test_layer_setup_fail.py │ │ │ │ │ ├── test_layer_teardown_fail.py │ │ │ │ │ ├── test_layers_with_errors.py │ │ │ │ │ ├── test_such_setup_fail.py │ │ │ │ │ ├── test_such_teardown_fail.py │ │ │ │ │ └── test_such_with_errors.py │ │ │ │ ├── layers_with_inheritance │ │ │ │ │ └── test_layers_with_inheritance.py │ │ │ │ ├── load_tests │ │ │ │ │ ├── test_filter.py │ │ │ │ │ └── test_simple.py │ │ │ │ ├── load_tests_pkg │ │ │ │ │ ├── ltpkg │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── test_find_these.py │ │ │ │ │ ├── ltpkg2 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── test_skip_these.py │ │ │ │ │ └── unittest.cfg │ │ │ │ ├── logging │ │ │ │ │ └── logging_keeps_copies_of_mutable_objects.py │ │ │ │ ├── logging_config │ │ │ │ │ ├── logging_config.py │ │ │ │ │ └── nose2.cfg │ │ │ │ ├── many_tests │ │ │ │ │ └── test_gen_many_func.py │ │ │ │ ├── many_tests_socket │ │ │ │ │ ├── nose2.cfg │ │ │ │ │ └── test_gen_many_socket_func.py │ │ │ │ ├── module_fixtures │ │ │ │ │ ├── test_mf_func.py │ │ │ │ │ ├── test_mf_gen_func.py │ │ │ │ │ ├── test_mf_param_func.py │ │ │ │ │ └── test_mf_testcase.py │ │ │ │ ├── module_import_err │ │ │ │ │ ├── pkg │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_attribute_err.py │ │ │ │ │ │ └── test_import_err.py │ │ │ │ │ └── test_import_err.py │ │ │ │ ├── no_tests │ │ │ │ │ └── a.py │ │ │ │ ├── one_test │ │ │ │ │ └── tests.py │ │ │ │ ├── package_in_lib │ │ │ │ │ ├── lib │ │ │ │ │ │ └── pkg2 │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── tests.py │ │ │ │ ├── pretty_asserts │ │ │ │ │ ├── assign_after_assert │ │ │ │ │ │ └── test_assign_after_assert.py │ │ │ │ │ ├── attribute_resolution │ │ │ │ │ │ └── test_prettyassert_attribute_resolution.py │ │ │ │ │ ├── attribute_resolution2 │ │ │ │ │ │ └── test_prettyassert_attribute_resolution2.py │ │ │ │ │ ├── conf_on │ │ │ │ │ │ ├── nose2.cfg │ │ │ │ │ │ └── test_conf_on.py │ │ │ │ │ ├── ignore_passing │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── test_prettyassert_ignore_passing.py │ │ │ │ │ ├── multiline_funcdef │ │ │ │ │ │ └── test_multiline_funcdef.py │ │ │ │ │ ├── multiline_statement │ │ │ │ │ │ └── test_multiline_statement.py │ │ │ │ │ ├── simple_global │ │ │ │ │ │ └── test_simple_global.py │ │ │ │ │ └── unittest_assertion │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── test_prettyassert_unittestassertion.py │ │ │ │ ├── slow │ │ │ │ │ └── test_slow.py │ │ │ │ ├── subtests │ │ │ │ │ └── test_subtests.py │ │ │ │ ├── such_with_params │ │ │ │ │ └── such_with_params.py │ │ │ │ ├── test_class_fail │ │ │ │ │ └── test_class_fail.py │ │ │ │ ├── test_classes │ │ │ │ │ ├── test_classes.py │ │ │ │ │ └── test_fixtures.py │ │ │ │ ├── test_classes_mp │ │ │ │ │ ├── test_classes_mp.py │ │ │ │ │ └── test_fixtures_mp.py │ │ │ │ ├── test_coverage_config │ │ │ │ │ ├── coveragerc │ │ │ │ │ │ ├── .coveragerc │ │ │ │ │ │ ├── covered_lib_coveragerc │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── mod1.py │ │ │ │ │ │ └── test_coveragerc.py │ │ │ │ │ └── nose2cfg │ │ │ │ │ │ ├── covered_lib_nose2cfg │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── mod1.py │ │ │ │ │ │ ├── nose2.cfg │ │ │ │ │ │ └── test_nose2cfg.py │ │ │ │ ├── test_with_module │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── mod1.py │ │ │ │ │ └── test_coverage.py │ │ │ │ ├── tests_in_package │ │ │ │ │ ├── docs.rst │ │ │ │ │ ├── docs.txt │ │ │ │ │ ├── pkg1 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── mod1.py │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── test_things.py │ │ │ │ │ ├── setup.py │ │ │ │ │ └── unittest.cfg │ │ │ │ ├── tests_in_unzipped_eggs │ │ │ │ │ ├── docs.rst │ │ │ │ │ ├── docs.txt │ │ │ │ │ ├── pkgunegg-0.0.0-py2.7.egg │ │ │ │ │ │ ├── EGG-INFO │ │ │ │ │ │ │ ├── PKG-INFO │ │ │ │ │ │ │ ├── SOURCES.txt │ │ │ │ │ │ │ ├── dependency_links.txt │ │ │ │ │ │ │ ├── top_level.txt │ │ │ │ │ │ │ └── zip-safe │ │ │ │ │ │ └── pkgunegg │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── mod1.py │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── test_things.py │ │ │ │ │ ├── setup.py │ │ │ │ │ └── unittest.cfg │ │ │ │ └── tests_in_zipped_eggs │ │ │ │ │ ├── docs.rst │ │ │ │ │ ├── docs.txt │ │ │ │ │ ├── pkgegg-0.0.0-py2.7.egg │ │ │ │ │ ├── setup.py │ │ │ │ │ └── unittest.cfg │ │ │ ├── such │ │ │ │ ├── output.txt │ │ │ │ ├── test_regression_same_havings.py │ │ │ │ ├── test_such.py │ │ │ │ ├── test_such_timing.py │ │ │ │ └── test_such_without_layers.py │ │ │ └── toml │ │ │ │ ├── a │ │ │ │ └── pyproject.toml │ │ │ │ └── b │ │ │ │ └── pyproject.toml │ │ ├── test_attrib_plugin.py │ │ ├── test_collect_plugin.py │ │ ├── test_coverage.py │ │ ├── test_decorators.py │ │ ├── test_discovery_loader.py │ │ ├── test_doctests_plugin.py │ │ ├── test_dundertest_plugin.py │ │ ├── test_eggdiscovery_loader.py │ │ ├── test_junitxml_plugin.py │ │ ├── test_layers_hooks.py │ │ ├── test_layers_plugin.py │ │ ├── test_loading.py │ │ ├── test_loadtests_plugin.py │ │ ├── test_logcapture_plugin.py │ │ ├── test_main.py │ │ ├── test_mp_plugin.py │ │ ├── test_prettyassert.py │ │ ├── test_printhooks_plugin.py │ │ ├── test_session.py │ │ ├── test_subtests.py │ │ ├── test_such_dsl.py │ │ ├── test_util.py │ │ └── test_verbosity.py │ └── unit │ │ ├── __init__.py │ │ ├── test_attrib_plugin.py │ │ ├── test_buffer_plugin.py │ │ ├── test_collect_plugin.py │ │ ├── test_collector.py │ │ ├── test_config.py │ │ ├── test_debugger_plugin.py │ │ ├── test_decorators.py │ │ ├── test_doctest_plugin.py │ │ ├── test_dundertest_plugin.py │ │ ├── test_failfast.py │ │ ├── test_functions_loader.py │ │ ├── test_generators_plugin.py │ │ ├── test_junitxml.py │ │ ├── test_layers_plugin.py │ │ ├── test_loader.py │ │ ├── test_logcapture_plugin.py │ │ ├── test_mp_plugin.py │ │ ├── test_outcomes_plugin.py │ │ ├── test_params_plugin.py │ │ ├── test_plugin_api.py │ │ ├── test_printhooks_plugin.py │ │ ├── test_prof_plugin.py │ │ ├── test_result.py │ │ ├── test_session.py │ │ ├── test_testcase_loader.py │ │ ├── test_testclass_loader.py │ │ ├── test_testid_plugin.py │ │ └── test_util.py ├── tools │ ├── __init__.py │ ├── decorators.py │ ├── params.py │ └── such.py └── util.py ├── pyproject.toml ├── setup.py ├── tox.ini └── unittest.cfg /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/test-on-downstream-projects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/.github/workflows/test-on-downstream-projects.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/README.rst -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/RELEASING.md -------------------------------------------------------------------------------- /changelog.rst: -------------------------------------------------------------------------------- 1 | docs/changelog.rst -------------------------------------------------------------------------------- /contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/contributing.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/configuration.rst -------------------------------------------------------------------------------- /docs/contents.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/contents.rst.inc -------------------------------------------------------------------------------- /docs/decorators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/decorators.rst -------------------------------------------------------------------------------- /docs/dev/contributing.rst: -------------------------------------------------------------------------------- 1 | ../../contributing.rst -------------------------------------------------------------------------------- /docs/dev/documenting_plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/dev/documenting_plugins.rst -------------------------------------------------------------------------------- /docs/dev/event_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/dev/event_reference.rst -------------------------------------------------------------------------------- /docs/dev/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/dev/exceptions.rst -------------------------------------------------------------------------------- /docs/dev/hook_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/dev/hook_reference.rst -------------------------------------------------------------------------------- /docs/dev/internals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/dev/internals.rst -------------------------------------------------------------------------------- /docs/dev/loader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/dev/loader.rst -------------------------------------------------------------------------------- /docs/dev/main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/dev/main.rst -------------------------------------------------------------------------------- /docs/dev/plugin_class_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/dev/plugin_class_reference.rst -------------------------------------------------------------------------------- /docs/dev/result.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/dev/result.rst -------------------------------------------------------------------------------- /docs/dev/runner.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/dev/runner.rst -------------------------------------------------------------------------------- /docs/dev/session_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/dev/session_reference.rst -------------------------------------------------------------------------------- /docs/dev/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/dev/utils.rst -------------------------------------------------------------------------------- /docs/dev/writing_plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/dev/writing_plugins.rst -------------------------------------------------------------------------------- /docs/differences.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/differences.rst -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/params.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/params.rst -------------------------------------------------------------------------------- /docs/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins.rst -------------------------------------------------------------------------------- /docs/plugins/attrib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/attrib.rst -------------------------------------------------------------------------------- /docs/plugins/attrib_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/attrib_example.py -------------------------------------------------------------------------------- /docs/plugins/buffer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/buffer.rst -------------------------------------------------------------------------------- /docs/plugins/collect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/collect.rst -------------------------------------------------------------------------------- /docs/plugins/coverage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/coverage.rst -------------------------------------------------------------------------------- /docs/plugins/debugger.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/debugger.rst -------------------------------------------------------------------------------- /docs/plugins/discovery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/discovery.rst -------------------------------------------------------------------------------- /docs/plugins/doctests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/doctests.rst -------------------------------------------------------------------------------- /docs/plugins/dundertests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/dundertests.rst -------------------------------------------------------------------------------- /docs/plugins/eggdiscovery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/eggdiscovery.rst -------------------------------------------------------------------------------- /docs/plugins/failfast.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/failfast.rst -------------------------------------------------------------------------------- /docs/plugins/functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/functions.rst -------------------------------------------------------------------------------- /docs/plugins/generators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/generators.rst -------------------------------------------------------------------------------- /docs/plugins/junitxml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/junitxml.rst -------------------------------------------------------------------------------- /docs/plugins/layers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/layers.rst -------------------------------------------------------------------------------- /docs/plugins/loadtests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/loadtests.rst -------------------------------------------------------------------------------- /docs/plugins/logcapture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/logcapture.rst -------------------------------------------------------------------------------- /docs/plugins/mp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/mp.rst -------------------------------------------------------------------------------- /docs/plugins/outcomes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/outcomes.rst -------------------------------------------------------------------------------- /docs/plugins/parameters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/parameters.rst -------------------------------------------------------------------------------- /docs/plugins/prettyassert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/prettyassert.rst -------------------------------------------------------------------------------- /docs/plugins/printhooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/printhooks.rst -------------------------------------------------------------------------------- /docs/plugins/prof.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/prof.rst -------------------------------------------------------------------------------- /docs/plugins/result.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/result.rst -------------------------------------------------------------------------------- /docs/plugins/testcases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/testcases.rst -------------------------------------------------------------------------------- /docs/plugins/testclasses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/testclasses.rst -------------------------------------------------------------------------------- /docs/plugins/testid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/plugins/testid.rst -------------------------------------------------------------------------------- /docs/such_dsl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/such_dsl.rst -------------------------------------------------------------------------------- /docs/tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/tools.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /nose2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/__init__.py -------------------------------------------------------------------------------- /nose2/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/__main__.py -------------------------------------------------------------------------------- /nose2/_toml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/_toml.py -------------------------------------------------------------------------------- /nose2/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/collector.py -------------------------------------------------------------------------------- /nose2/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/config.py -------------------------------------------------------------------------------- /nose2/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/events.py -------------------------------------------------------------------------------- /nose2/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/exceptions.py -------------------------------------------------------------------------------- /nose2/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/loader.py -------------------------------------------------------------------------------- /nose2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/main.py -------------------------------------------------------------------------------- /nose2/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/__init__.py -------------------------------------------------------------------------------- /nose2/plugins/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/_constants.py -------------------------------------------------------------------------------- /nose2/plugins/attrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/attrib.py -------------------------------------------------------------------------------- /nose2/plugins/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/buffer.py -------------------------------------------------------------------------------- /nose2/plugins/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/collect.py -------------------------------------------------------------------------------- /nose2/plugins/coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/coverage.py -------------------------------------------------------------------------------- /nose2/plugins/debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/debugger.py -------------------------------------------------------------------------------- /nose2/plugins/doctests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/doctests.py -------------------------------------------------------------------------------- /nose2/plugins/dundertest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/dundertest.py -------------------------------------------------------------------------------- /nose2/plugins/failfast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/failfast.py -------------------------------------------------------------------------------- /nose2/plugins/junitxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/junitxml.py -------------------------------------------------------------------------------- /nose2/plugins/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/layers.py -------------------------------------------------------------------------------- /nose2/plugins/loader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/plugins/loader/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/loader/discovery.py -------------------------------------------------------------------------------- /nose2/plugins/loader/eggdiscovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/loader/eggdiscovery.py -------------------------------------------------------------------------------- /nose2/plugins/loader/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/loader/functions.py -------------------------------------------------------------------------------- /nose2/plugins/loader/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/loader/generators.py -------------------------------------------------------------------------------- /nose2/plugins/loader/loadtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/loader/loadtests.py -------------------------------------------------------------------------------- /nose2/plugins/loader/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/loader/parameters.py -------------------------------------------------------------------------------- /nose2/plugins/loader/testcases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/loader/testcases.py -------------------------------------------------------------------------------- /nose2/plugins/loader/testclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/loader/testclasses.py -------------------------------------------------------------------------------- /nose2/plugins/logcapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/logcapture.py -------------------------------------------------------------------------------- /nose2/plugins/mp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/mp.py -------------------------------------------------------------------------------- /nose2/plugins/outcomes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/outcomes.py -------------------------------------------------------------------------------- /nose2/plugins/prettyassert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/prettyassert.py -------------------------------------------------------------------------------- /nose2/plugins/printhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/printhooks.py -------------------------------------------------------------------------------- /nose2/plugins/prof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/prof.py -------------------------------------------------------------------------------- /nose2/plugins/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/result.py -------------------------------------------------------------------------------- /nose2/plugins/testid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/plugins/testid.py -------------------------------------------------------------------------------- /nose2/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/result.py -------------------------------------------------------------------------------- /nose2/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/runner.py -------------------------------------------------------------------------------- /nose2/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/session.py -------------------------------------------------------------------------------- /nose2/sphinxext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/sphinxext.py -------------------------------------------------------------------------------- /nose2/suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/suite.py -------------------------------------------------------------------------------- /nose2/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit and functional tests.""" 2 | -------------------------------------------------------------------------------- /nose2/tests/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/_common.py -------------------------------------------------------------------------------- /nose2/tests/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/cfg/a.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/cfg/a.cfg -------------------------------------------------------------------------------- /nose2/tests/functional/support/cfg/b.cfg: -------------------------------------------------------------------------------- 1 | [b] 2 | b = 4 3 | 5 4 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/lib/layer_hooks_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/lib/layer_hooks_plugin.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/lib/plugin_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/lib/plugin_a.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/class_fixtures/test_cf_testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/class_fixtures/test_cf_testcase.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/colliding_test_modules/tests/more_tests/test.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/colliding_test_modules/tests/test.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_config_fail_under/.coveragerc: -------------------------------------------------------------------------------- 1 | [report] 2 | show_missing = True 3 | fail_under = 80 4 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_config_fail_under/covered_lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_config_fail_under/covered_lib/mod1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/coverage_config_fail_under/covered_lib/mod1.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_config_fail_under/test_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/coverage_config_fail_under/test_mod.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_config_fail_under2/.coveragerc: -------------------------------------------------------------------------------- 1 | [report] 2 | show_missing = True 3 | fail_under = 100 4 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_config_fail_under2/nose2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/coverage_config_fail_under2/nose2.cfg -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_config_fail_under2/part_covered_lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_config_fail_under2/part_covered_lib/mod1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/coverage_config_fail_under2/part_covered_lib/mod1.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_config_fail_under2/test_part_covered_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/coverage_config_fail_under2/test_part_covered_mod.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_multiprocessing_with_combine/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | concurrency = multiprocessing 3 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_multiprocessing_with_combine/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_multiprocessing_with_combine/lib/mod1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/coverage_multiprocessing_with_combine/lib/mod1.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_multiprocessing_with_combine/nose2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/coverage_multiprocessing_with_combine/nose2.cfg -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_multiprocessing_with_combine/test_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/coverage_multiprocessing_with_combine/test_lib.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_multiprocessing_without_combine/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | concurrency = multiprocessing 3 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_multiprocessing_without_combine/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_multiprocessing_without_combine/lib/mod1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/coverage_multiprocessing_without_combine/lib/mod1.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_multiprocessing_without_combine/nose2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/coverage_multiprocessing_without_combine/nose2.cfg -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_multiprocessing_without_combine/test_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/coverage_multiprocessing_without_combine/test_lib.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_of_imports/lib20171102/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/coverage_of_imports/lib20171102/__init__.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_of_imports/lib20171102/mod1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/coverage_of_imports/lib20171102/mod1.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/coverage_of_imports/test_import_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/coverage_of_imports/test_import_coverage.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/decorators/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/decorators/test_decorators.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/doctests/docs.py: -------------------------------------------------------------------------------- 1 | """ 2 | >>> 2 == 2 3 | True 4 | """ 5 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/doctests/docs.rst: -------------------------------------------------------------------------------- 1 | >>> 1 == 1 2 | True 3 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/doctests/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/doctests/docs.txt -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/doctests/doctests_pkg1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/doctests/doctests_pkg1/docs1.py: -------------------------------------------------------------------------------- 1 | """ 2 | >>> 2 == 2 3 | True 4 | """ 5 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/doctests/doctests_pkg1/docs1.rst: -------------------------------------------------------------------------------- 1 | >>> 1 == 1 2 | True 3 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/doctests/doctests_pkg1/docs1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/doctests/doctests_pkg1/docs1.txt -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/dundertest_attribute/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/dundertest_attribute/test.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/expected_failures/expected_failures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/expected_failures/expected_failures.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/junitxml/chdir/test_junitxml_chdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/junitxml/chdir/test_junitxml_chdir.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/junitxml/empty_properties/properties.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/junitxml/empty_properties/test_junitxml_empty_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/junitxml/empty_properties/test_junitxml_empty_properties.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/junitxml/empty_properties/unittest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/junitxml/empty_properties/unittest.cfg -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/junitxml/fail_to_write/test_junitxml_fail_to_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/junitxml/fail_to_write/test_junitxml_fail_to_write.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/junitxml/fail_to_write/unittest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/junitxml/fail_to_write/unittest.cfg -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/junitxml/happyday/test_junitxml_happyday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/junitxml/happyday/test_junitxml_happyday.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/junitxml/missing_properties/test_junitxml_missing_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/junitxml/missing_properties/test_junitxml_missing_properties.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/junitxml/missing_properties/unittest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/junitxml/missing_properties/unittest.cfg -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/junitxml/non_default_path/test_junitxml_non_default_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/junitxml/non_default_path/test_junitxml_non_default_path.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/junitxml/non_default_path/unittest.cfg: -------------------------------------------------------------------------------- 1 | [junit-xml] 2 | path = a.xml 3 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/junitxml/skip_reason/test_junitxml_skip_reason.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/junitxml/skip_reason/test_junitxml_skip_reason.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/junitxml/skip_reason/unittest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/junitxml/skip_reason/unittest.cfg -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/junitxml/with_properties/test_junitxml_with_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/junitxml/with_properties/test_junitxml_with_properties.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/junitxml/with_properties/unittest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/junitxml/with_properties/unittest.cfg -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers/test_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers/test_layers.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_and_attributes/test_layers_and_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_and_attributes/test_layers_and_attributes.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_and_non_layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_and_non_layers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_and_non_layers/common.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_and_non_layers/test_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_and_non_layers/test_layers.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_and_non_layers/test_such_with_has_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_and_non_layers/test_such_with_has_setup.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_and_non_layers/test_such_with_uses_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_and_non_layers/test_such_with_uses_decorator.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_hooks/test_layers_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_hooks/test_layers_simple.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_hooks/test_simple_such.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_hooks/test_simple_such.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_setups/higher_layer_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_setups/higher_layer_setup.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_setups/higher_layer_testsetup_3layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_setups/higher_layer_testsetup_3layers.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_setups/higher_layer_testsetup_no_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_setups/higher_layer_testsetup_no_test.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_setups/higher_layer_testsetup_with_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_setups/higher_layer_testsetup_with_test.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_with_errors/test_layer_setup_fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_with_errors/test_layer_setup_fail.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_with_errors/test_layer_teardown_fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_with_errors/test_layer_teardown_fail.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_with_errors/test_layers_with_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_with_errors/test_layers_with_errors.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_with_errors/test_such_setup_fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_with_errors/test_such_setup_fail.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_with_errors/test_such_teardown_fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_with_errors/test_such_teardown_fail.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_with_errors/test_such_with_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_with_errors/test_such_with_errors.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/layers_with_inheritance/test_layers_with_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/layers_with_inheritance/test_layers_with_inheritance.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/load_tests/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/load_tests/test_filter.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/load_tests/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/load_tests/test_simple.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/load_tests_pkg/ltpkg/__init__.py: -------------------------------------------------------------------------------- 1 | def gt(a, b): 2 | return a > b 3 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/load_tests_pkg/ltpkg/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/load_tests_pkg/ltpkg/tests/__init__.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/load_tests_pkg/ltpkg/tests/test_find_these.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/load_tests_pkg/ltpkg/tests/test_find_these.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/load_tests_pkg/ltpkg2/__init__.py: -------------------------------------------------------------------------------- 1 | def lt(a, b): 2 | return a < b 3 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/load_tests_pkg/ltpkg2/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/load_tests_pkg/ltpkg2/tests/__init__.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/load_tests_pkg/ltpkg2/tests/test_skip_these.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/load_tests_pkg/ltpkg2/tests/test_skip_these.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/load_tests_pkg/unittest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/load_tests_pkg/unittest.cfg -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/logging/logging_keeps_copies_of_mutable_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/logging/logging_keeps_copies_of_mutable_objects.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/logging_config/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/logging_config/logging_config.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/logging_config/nose2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/logging_config/nose2.cfg -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/many_tests/test_gen_many_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/many_tests/test_gen_many_func.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/many_tests_socket/nose2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/many_tests_socket/nose2.cfg -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/many_tests_socket/test_gen_many_socket_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/many_tests_socket/test_gen_many_socket_func.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/module_fixtures/test_mf_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/module_fixtures/test_mf_func.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/module_fixtures/test_mf_gen_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/module_fixtures/test_mf_gen_func.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/module_fixtures/test_mf_param_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/module_fixtures/test_mf_param_func.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/module_fixtures/test_mf_testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/module_fixtures/test_mf_testcase.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/module_import_err/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/module_import_err/pkg/test_attribute_err.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/module_import_err/pkg/test_attribute_err.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/module_import_err/pkg/test_import_err.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/module_import_err/pkg/test_import_err.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/module_import_err/test_import_err.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/module_import_err/test_import_err.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/no_tests/a.py: -------------------------------------------------------------------------------- 1 | """An empty module.""" 2 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/one_test/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/one_test/tests.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/package_in_lib/lib/pkg2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/package_in_lib/lib/pkg2/__init__.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/package_in_lib/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/package_in_lib/tests.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/pretty_asserts/assign_after_assert/test_assign_after_assert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/pretty_asserts/assign_after_assert/test_assign_after_assert.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/pretty_asserts/attribute_resolution/test_prettyassert_attribute_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/pretty_asserts/attribute_resolution/test_prettyassert_attribute_resolution.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/pretty_asserts/attribute_resolution2/test_prettyassert_attribute_resolution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/pretty_asserts/attribute_resolution2/test_prettyassert_attribute_resolution2.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/pretty_asserts/conf_on/nose2.cfg: -------------------------------------------------------------------------------- 1 | [pretty-assert] 2 | always-on = True 3 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/pretty_asserts/conf_on/test_conf_on.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/pretty_asserts/conf_on/test_conf_on.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/pretty_asserts/ignore_passing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/pretty_asserts/ignore_passing/test_prettyassert_ignore_passing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/pretty_asserts/ignore_passing/test_prettyassert_ignore_passing.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/pretty_asserts/multiline_funcdef/test_multiline_funcdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/pretty_asserts/multiline_funcdef/test_multiline_funcdef.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/pretty_asserts/multiline_statement/test_multiline_statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/pretty_asserts/multiline_statement/test_multiline_statement.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/pretty_asserts/simple_global/test_simple_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/pretty_asserts/simple_global/test_simple_global.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/pretty_asserts/unittest_assertion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/pretty_asserts/unittest_assertion/test_prettyassert_unittestassertion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/pretty_asserts/unittest_assertion/test_prettyassert_unittestassertion.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/slow/test_slow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/slow/test_slow.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/subtests/test_subtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/subtests/test_subtests.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/such_with_params/such_with_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/such_with_params/such_with_params.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/test_class_fail/test_class_fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/test_class_fail/test_class_fail.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/test_classes/test_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/test_classes/test_classes.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/test_classes/test_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/test_classes/test_fixtures.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/test_classes_mp/test_classes_mp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/test_classes_mp/test_classes_mp.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/test_classes_mp/test_fixtures_mp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/test_classes_mp/test_fixtures_mp.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/test_coverage_config/coveragerc/.coveragerc: -------------------------------------------------------------------------------- 1 | [report] 2 | show_missing = True 3 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/test_coverage_config/coveragerc/covered_lib_coveragerc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/test_coverage_config/coveragerc/covered_lib_coveragerc/mod1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/test_coverage_config/coveragerc/covered_lib_coveragerc/mod1.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/test_coverage_config/coveragerc/test_coveragerc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/test_coverage_config/coveragerc/test_coveragerc.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/test_coverage_config/nose2cfg/covered_lib_nose2cfg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/test_coverage_config/nose2cfg/covered_lib_nose2cfg/mod1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/test_coverage_config/nose2cfg/covered_lib_nose2cfg/mod1.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/test_coverage_config/nose2cfg/nose2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/test_coverage_config/nose2cfg/nose2.cfg -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/test_coverage_config/nose2cfg/test_nose2cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/test_coverage_config/nose2cfg/test_nose2cfg.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/test_with_module/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/test_with_module/lib/mod1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/test_with_module/lib/mod1.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/test_with_module/test_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/test_with_module/test_coverage.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_package/docs.rst: -------------------------------------------------------------------------------- 1 | >>> 1 == 1 2 | True 3 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_package/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/tests_in_package/docs.txt -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_package/pkg1/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_package/pkg1/mod1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/tests_in_package/pkg1/mod1.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_package/pkg1/test/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_package/pkg1/test/test_things.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/tests_in_package/pkg1/test/test_things.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_package/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/tests_in_package/setup.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_package/unittest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/tests_in_package/unittest.cfg -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/docs.rst: -------------------------------------------------------------------------------- 1 | >>> 1 == 1 2 | True 3 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/docs.txt -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/pkgunegg-0.0.0-py2.7.egg/EGG-INFO/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/pkgunegg-0.0.0-py2.7.egg/EGG-INFO/PKG-INFO -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/pkgunegg-0.0.0-py2.7.egg/EGG-INFO/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/pkgunegg-0.0.0-py2.7.egg/EGG-INFO/SOURCES.txt -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/pkgunegg-0.0.0-py2.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/pkgunegg-0.0.0-py2.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pkgunegg 2 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/pkgunegg-0.0.0-py2.7.egg/EGG-INFO/zip-safe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/pkgunegg-0.0.0-py2.7.egg/pkgunegg/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/pkgunegg-0.0.0-py2.7.egg/pkgunegg/mod1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/pkgunegg-0.0.0-py2.7.egg/pkgunegg/mod1.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/pkgunegg-0.0.0-py2.7.egg/pkgunegg/test/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/pkgunegg-0.0.0-py2.7.egg/pkgunegg/test/test_things.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/pkgunegg-0.0.0-py2.7.egg/pkgunegg/test/test_things.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/setup.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/unittest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/tests_in_unzipped_eggs/unittest.cfg -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_zipped_eggs/docs.rst: -------------------------------------------------------------------------------- 1 | >>> 1 == 1 2 | True 3 | -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_zipped_eggs/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/tests_in_zipped_eggs/docs.txt -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_zipped_eggs/pkgegg-0.0.0-py2.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/tests_in_zipped_eggs/pkgegg-0.0.0-py2.7.egg -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_zipped_eggs/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/tests_in_zipped_eggs/setup.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/scenario/tests_in_zipped_eggs/unittest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/scenario/tests_in_zipped_eggs/unittest.cfg -------------------------------------------------------------------------------- /nose2/tests/functional/support/such/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/such/output.txt -------------------------------------------------------------------------------- /nose2/tests/functional/support/such/test_regression_same_havings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/such/test_regression_same_havings.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/such/test_such.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/such/test_such.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/such/test_such_timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/such/test_such_timing.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/such/test_such_without_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/such/test_such_without_layers.py -------------------------------------------------------------------------------- /nose2/tests/functional/support/toml/a/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/toml/a/pyproject.toml -------------------------------------------------------------------------------- /nose2/tests/functional/support/toml/b/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/support/toml/b/pyproject.toml -------------------------------------------------------------------------------- /nose2/tests/functional/test_attrib_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_attrib_plugin.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_collect_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_collect_plugin.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_coverage.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_decorators.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_discovery_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_discovery_loader.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_doctests_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_doctests_plugin.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_dundertest_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_dundertest_plugin.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_eggdiscovery_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_eggdiscovery_loader.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_junitxml_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_junitxml_plugin.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_layers_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_layers_hooks.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_layers_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_layers_plugin.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_loading.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_loadtests_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_loadtests_plugin.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_logcapture_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_logcapture_plugin.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_main.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_mp_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_mp_plugin.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_prettyassert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_prettyassert.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_printhooks_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_printhooks_plugin.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_session.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_subtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_subtests.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_such_dsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_such_dsl.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_util.py -------------------------------------------------------------------------------- /nose2/tests/functional/test_verbosity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/functional/test_verbosity.py -------------------------------------------------------------------------------- /nose2/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nose2/tests/unit/test_attrib_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_attrib_plugin.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_buffer_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_buffer_plugin.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_collect_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_collect_plugin.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_collector.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_config.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_debugger_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_debugger_plugin.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_decorators.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_doctest_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_doctest_plugin.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_dundertest_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_dundertest_plugin.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_failfast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_failfast.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_functions_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_functions_loader.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_generators_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_generators_plugin.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_junitxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_junitxml.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_layers_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_layers_plugin.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_loader.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_logcapture_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_logcapture_plugin.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_mp_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_mp_plugin.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_outcomes_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_outcomes_plugin.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_params_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_params_plugin.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_plugin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_plugin_api.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_printhooks_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_printhooks_plugin.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_prof_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_prof_plugin.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_result.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_session.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_testcase_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_testcase_loader.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_testclass_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_testclass_loader.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_testid_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_testid_plugin.py -------------------------------------------------------------------------------- /nose2/tests/unit/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tests/unit/test_util.py -------------------------------------------------------------------------------- /nose2/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tools/__init__.py -------------------------------------------------------------------------------- /nose2/tools/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tools/decorators.py -------------------------------------------------------------------------------- /nose2/tools/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tools/params.py -------------------------------------------------------------------------------- /nose2/tools/such.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/tools/such.py -------------------------------------------------------------------------------- /nose2/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/nose2/util.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/tox.ini -------------------------------------------------------------------------------- /unittest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nose-devs/nose2/HEAD/unittest.cfg --------------------------------------------------------------------------------