├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── pyproject.toml ├── pytest_console_scripts ├── __init__.py └── py.typed ├── tests ├── conftest.py ├── test_console_scripts.py └── test_run_scripts.py └── tox.ini /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvas-it/pytest-console-scripts/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvas-it/pytest-console-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvas-it/pytest-console-scripts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvas-it/pytest-console-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvas-it/pytest-console-scripts/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvas-it/pytest-console-scripts/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvas-it/pytest-console-scripts/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest_console_scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvas-it/pytest-console-scripts/HEAD/pytest_console_scripts/__init__.py -------------------------------------------------------------------------------- /pytest_console_scripts/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvas-it/pytest-console-scripts/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_console_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvas-it/pytest-console-scripts/HEAD/tests/test_console_scripts.py -------------------------------------------------------------------------------- /tests/test_run_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvas-it/pytest-console-scripts/HEAD/tests/test_run_scripts.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvas-it/pytest-console-scripts/HEAD/tox.ini --------------------------------------------------------------------------------