diff options
author | Yobmod <yobmod@gmail.com> | 2021-07-19 19:47:02 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-07-19 19:47:02 +0100 |
commit | e666e3b5d5a6869365342d47325f75d86146a5b8 (patch) | |
tree | 0abd6fce9ee9c0ca2c6d743b68e421bc24a8a681 | |
parent | 9e5e969479ec6018e1ba06b95bcdefca5b0082a4 (diff) | |
parent | 23066f6fe414ec809434727485136b7cd84aa5b8 (diff) | |
download | gitpython-e666e3b5d5a6869365342d47325f75d86146a5b8.tar.gz |
Merge branch 'main' of https://github.com/Yobmod/GitPython
-rw-r--r-- | README.md | 20 |
1 files changed, 11 insertions, 9 deletions
@@ -106,19 +106,21 @@ On *Windows*, make sure you have `git-daemon` in your PATH. For MINGW-git, the exists in `Git\mingw64\libexec\git-core\`; CYGWIN has no daemon, but should get along fine with MINGW's. -Ensure testing libraries are installed. In the root directory, run: `pip install test-requirements.txt` -Then, +Ensure testing libraries are installed. +In the root directory, run: `pip install -r test-requirements.txt` -To lint, run `flake8` -To typecheck, run `mypy -p git` -To test, `pytest` +To lint, run: `flake8` -Configuration for flake8 is in root/.flake8 file. -Configuration for mypy, pytest, coverage is in root/pyproject.toml. +To typecheck, run: `mypy -p git` -The same linting and testing will also be performed against different supported python versions -upon submitting a pull request (or on each push if you have a fork with a "main" branch). +To test, run: `pytest` + +Configuration for flake8 is in the ./.flake8 file. +Configurations for mypy, pytest and coverage.py are in ./pyproject.toml. + +The same linting and testing will also be performed against different supported python versions +upon submitting a pull request (or on each push if you have a fork with a "main" branch and actions enabled). ### Contributions |