Skip to content

Commit

Permalink
Update to current local dev commands
Browse files Browse the repository at this point in the history
  • Loading branch information
gdubicki committed Oct 4, 2021
1 parent 87b9721 commit 3f1d255
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CONTRIBUTING.md
Expand Up @@ -28,6 +28,8 @@ Pope](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
# Create a Python 3 virtualenv and activate it
virtualenv -p python3 .venv
. .venv/bin/activate
# Get the up to date base packages
pip install --upgrade wheel setuptools
# Install the module in a development mode
python setup.py develop
# Install test dependencies
Expand All @@ -44,7 +46,8 @@ do this to run the tests:

```bash
# Unit tests, with PEP8 and mypy (static typing) checks
pytest --pep8 --strict-markers --mypy pypuppetdb tests
mypy --install-types --non-interactive pypuppetdb/ tests/
pytest --flake8 --strict-markers --mypy pypuppetdb tests
# Security linter
bandit -r pypuppetdb
```
Expand Down

0 comments on commit 3f1d255

Please sign in to comment.