├── .bumpversion.cfg ├── .flake8 ├── .github └── workflows │ └── check.yml ├── .gitignore ├── CHANGES.rst ├── LICENSE ├── README.rst ├── pyproject.toml ├── pytest_xpara ├── __init__.py └── plugin.py ├── requirements └── dev.txt ├── setup.cfg ├── setup.py ├── tests ├── conftest.py ├── test_plugin.py └── test_version.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/pytest-xpara/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/pytest-xpara/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/pytest-xpara/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/pytest-xpara/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/pytest-xpara/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/pytest-xpara/HEAD/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/pytest-xpara/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest_xpara/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.3.0' 2 | -------------------------------------------------------------------------------- /pytest_xpara/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/pytest-xpara/HEAD/pytest_xpara/plugin.py -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- 1 | tox>=2.5.0 2 | bumpversion>=0.5.3 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/pytest-xpara/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/pytest-xpara/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/pytest-xpara/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/pytest-xpara/HEAD/tests/test_plugin.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/pytest-xpara/HEAD/tests/test_version.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/pytest-xpara/HEAD/tox.ini --------------------------------------------------------------------------------