Skip to content

Latest commit

 

History

History
38 lines (22 loc) · 521 Bytes

DEVELOP.rst

File metadata and controls

38 lines (22 loc) · 521 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 py38-Plone60 build_instance code-analysis lint-py38 coverage-report

run a specific tox env:

$ tox -e py38-Plone60