├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── noseparallel ├── __init__.py └── plugin.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── plugin_test.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlanger/nose-parallel/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlanger/nose-parallel/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlanger/nose-parallel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlanger/nose-parallel/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlanger/nose-parallel/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlanger/nose-parallel/HEAD/README.rst -------------------------------------------------------------------------------- /noseparallel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlanger/nose-parallel/HEAD/noseparallel/__init__.py -------------------------------------------------------------------------------- /noseparallel/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlanger/nose-parallel/HEAD/noseparallel/plugin.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlanger/nose-parallel/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/plugin_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlanger/nose-parallel/HEAD/tests/plugin_test.py --------------------------------------------------------------------------------