Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 586 Bytes

DEVELOP.rst

File metadata and controls

42 lines (26 loc) · 586 Bytes

Using the development buildout

Create a virtualenv in the package:

$ virtualenv --clear .

Install requirements with pip:

$ ./bin/pip install -r requirements.txt

Run buildout:

$ ./bin/buildout

Start Plone in foreground:

$ ./bin/instance fg

Running tests

$ tox

list all tox environments:

$ tox -l py27-Plone43 py27-Plone51 py27-Plone52 py37-Plone52 build_instance code-analysis lint-py27 lint-py37 coverage-report

run a specific tox env:

$ tox -e py37-Plone52