Skip to content

Latest commit

 

History

History
38 lines (22 loc) · 533 Bytes

DEVELOP.rst

File metadata and controls

38 lines (22 loc) · 533 Bytes

Using the development buildout

Create a virtualenv in the package:

$ virtualenv --clear .venv

Install requirements with pip:

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

Run buildout:

$ .venv/bin/buildout

Start Plone in foreground:

$ ./bin/instance fg

Running tests

$ tox

list all tox environments:

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

run a specific tox env:

$ tox -e py37-Plone52