s0undt3ch / cookiecutter-pytest-plugin

A Cookiecutter to create pytest plugins with ease.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

============================ Cookiecutter Pytest Plugin

Join Chat on Gitter.im See Build Status on Travis CI Documentation Status

Minimal Cookiecutter template for authoring Pytest plugins that help you to write better programs.

This template uses choice variables and hence requires Cookiecutter v 1.1.0 or higher

Getting Started

Simply install Cookiecutter and generate a new Pytest plugin project:

$ pip install cookiecutter
$ cookiecutter https://github.com/pytest-dev/cookiecutter-pytest-plugin

Cookiecutter prompts you for information regarding your plugin:

full_name [Raphael Pierzina]: Andreas Pelme
email [raphael@hackebrot.de]: andreas@pelme.se
github_username [hackebrot]: pelme
plugin_name [foobar]: awesome
short_description [A simple plugin to use with Pytest]:
version [0.1.0]:
pytest_version [2.8.1]:
year [2015]:
Select docs_tool:
1 - mkdocs
2 - sphinx
3 - none
Choose from 1, 2, 3 [1]: 1
Select license:
1 - MIT
2 - BSD-3
3 - GNU GPL v3.0
Choose from 1, 2, 3 [1]: 2
INFO:post_gen_project:Moving files for mkdocs.

There you go - you just created a minimal Pytest plugin:

pytest-awesome/
├── LICENSE
├── README.rst
├── docs
│   └── index.md
├── mkdocs.yml
├── pytest_awesome.py
├── setup.py
├── tests
│   ├── conftest.py
│   └── test_awesome.py
└── tox.ini

Features

  • Installable PyPI package featuring a setup.py.
  • Test suite running Tox and Pytest that makes sure your plugin is working as expected
  • Working example code for a fixture, a cli option, as well as a pytest.ini option
  • Comprehensive README.rst file that contains useful information about your plugin
  • Continuous integration configuration for Travis CI and AppVeyor
  • Optional documentation with either Sphinx or MkDocs
  • Choose from several licenses, such as MIT, BSD-3, or GNU GPL v3.0

Requirements to Submit a Plugin

If you plan on submitting your plugin to the pytest-dev organization you need to meet the following requirements:

  • PyPI presence with a setup.py that contains a license, pytest- prefixed, version number, authors, short and long description.
  • a tox.ini for running tests using Tox.
  • a README describing how to use the plugin and on which platforms it runs.
  • a LICENSE file or equivalent containing the licensing information, with matching info in setup.py.
  • an issue tracker unless you rather want to use the core Pytest issue tracker.

Please see the official guidelines at Submit a Plugin.

Resources

Please consult the Pytest docs for more information on hooks at Pytest Hook Reference.

Contribute

We welcome you to contribute to this project. Please visit the documentation to get started!

Issues

This template has been tested on Mac OS X Yosemite.

If you encounter any problems, please file an issue along with a detailed description.

Code of Conduct

Everyone interacting in the Cookiecutter Pytest Plugin project's codebases, issue trackers, chat rooms, and mailing lists is expected to follow the PyPA Code of Conduct.

License

Distributed under the terms of the MIT license, Cookiecutter Pytest Plugin is free and open source software

About

A Cookiecutter to create pytest plugins with ease.

License:MIT License


Languages

Language:Python 50.7%Language:Makefile 25.0%Language:Batchfile 24.3%