diff options
| author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-07-19 23:25:48 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-19 23:25:48 +0800 |
| commit | acbd6bad9ded9a1d59e80e71d334d64b0244f5cd (patch) | |
| tree | c7e162bb6962be9f33b9f7edb84da1b7511fe0d7 /requirements-dev.txt | |
| parent | 06c219929a427737b43c5dfd5359019f2c110d41 (diff) | |
| parent | f587b21a98e7c26986db87d991af42cafcfebb07 (diff) | |
| download | gitpython-acbd6bad9ded9a1d59e80e71d334d64b0244f5cd.tar.gz | |
Merge pull request #1294 from gitpython-developers/tidy-tools
Tidy tools
Diffstat (limited to 'requirements-dev.txt')
| -rw-r--r-- | requirements-dev.txt | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/requirements-dev.txt b/requirements-dev.txt index 6644bacd..0ece0a65 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,7 +1,17 @@ -r requirements.txt
-r test-requirements.txt
-pytest
-pytest-cov
+# libraries for additional local testing/linting - to be added to test-requirements.txt when all pass
+
+flake8-bugbear
+flake8-comprehensions
+flake8-type-checking;python_version>="3.8" # checks for TYPE_CHECKING only imports
+# flake8-annotations # checks for presence of type annotations
+# flake8-rst-docstrings # checks docstrings are valid RST
+# flake8-builtins # warns about shadowing builtin names
+# flake8-pytest-style
+
+# pytest-flake8
pytest-sugar
pytest-icdiff
+# pytest-profiling
|
