├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── Changes.md ├── Example.ipynb ├── License.md ├── MANIFEST.in ├── Readme.md ├── ipytest ├── __init__.py ├── _config.py ├── _impl.py ├── cov.py └── coveragerc ├── minidoc.py ├── pyproject.toml ├── tests ├── TestAsync.ipynb ├── TestCoverage.ipynb ├── TestCoverageWithConfig │ ├── .coveragerc │ ├── TestCoverage.ipynb │ └── TestCoverageWarning.ipynb ├── TestDoctestIssue.ipynb ├── TestIntegration.ipynb ├── TestIssue101_Conftest.ipynb ├── TestIssue21_Doctests.ipynb ├── TestRaiseOnError.ipynb ├── conftest.py ├── empty_module.py ├── nested │ └── TestIssue101_ConftestNested.ipynb ├── test_config.py ├── test_doctest.py ├── test_force_reload.py ├── test_ipytest.py ├── test_ipytest_cov.py ├── test_issue_71.py └── test_raise_on_error.py ├── uv.lock └── x.py /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/.gitignore -------------------------------------------------------------------------------- /Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/Changes.md -------------------------------------------------------------------------------- /Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/Example.ipynb -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/License.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/Readme.md -------------------------------------------------------------------------------- /ipytest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/ipytest/__init__.py -------------------------------------------------------------------------------- /ipytest/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/ipytest/_config.py -------------------------------------------------------------------------------- /ipytest/_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/ipytest/_impl.py -------------------------------------------------------------------------------- /ipytest/cov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/ipytest/cov.py -------------------------------------------------------------------------------- /ipytest/coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | plugins = 3 | ipytest.cov 4 | -------------------------------------------------------------------------------- /minidoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/minidoc.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/TestAsync.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/TestAsync.ipynb -------------------------------------------------------------------------------- /tests/TestCoverage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/TestCoverage.ipynb -------------------------------------------------------------------------------- /tests/TestCoverageWithConfig/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | plugins = 3 | ipytest.cov 4 | -------------------------------------------------------------------------------- /tests/TestCoverageWithConfig/TestCoverage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/TestCoverageWithConfig/TestCoverage.ipynb -------------------------------------------------------------------------------- /tests/TestCoverageWithConfig/TestCoverageWarning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/TestCoverageWithConfig/TestCoverageWarning.ipynb -------------------------------------------------------------------------------- /tests/TestDoctestIssue.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/TestDoctestIssue.ipynb -------------------------------------------------------------------------------- /tests/TestIntegration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/TestIntegration.ipynb -------------------------------------------------------------------------------- /tests/TestIssue101_Conftest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/TestIssue101_Conftest.ipynb -------------------------------------------------------------------------------- /tests/TestIssue21_Doctests.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/TestIssue21_Doctests.ipynb -------------------------------------------------------------------------------- /tests/TestRaiseOnError.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/TestRaiseOnError.ipynb -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/empty_module.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/nested/TestIssue101_ConftestNested.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/nested/TestIssue101_ConftestNested.ipynb -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/test_doctest.py -------------------------------------------------------------------------------- /tests/test_force_reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/test_force_reload.py -------------------------------------------------------------------------------- /tests/test_ipytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/test_ipytest.py -------------------------------------------------------------------------------- /tests/test_ipytest_cov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/test_ipytest_cov.py -------------------------------------------------------------------------------- /tests/test_issue_71.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/test_issue_71.py -------------------------------------------------------------------------------- /tests/test_raise_on_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/tests/test_raise_on_error.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/uv.lock -------------------------------------------------------------------------------- /x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmp/ipytest/HEAD/x.py --------------------------------------------------------------------------------