We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87b9721 commit 3f1d255Copy full SHA for 3f1d255
CONTRIBUTING.md
@@ -28,6 +28,8 @@ Pope](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
28
# Create a Python 3 virtualenv and activate it
29
virtualenv -p python3 .venv
30
. .venv/bin/activate
31
+# Get the up to date base packages
32
+pip install --upgrade wheel setuptools
33
# Install the module in a development mode
34
python setup.py develop
35
# Install test dependencies
@@ -44,7 +46,8 @@ do this to run the tests:
44
46
45
47
```bash
48
# Unit tests, with PEP8 and mypy (static typing) checks
-pytest --pep8 --strict-markers --mypy pypuppetdb tests
49
+mypy --install-types --non-interactive pypuppetdb/ tests/
50
+pytest --flake8 --strict-markers --mypy pypuppetdb tests
51
# Security linter
52
bandit -r pypuppetdb
53
```
0 commit comments