Skip to content

Commit

Permalink
fix(docs): Update git hook installation steps
Browse files Browse the repository at this point in the history
  • Loading branch information
panpuchkov committed Dec 24, 2023
1 parent ba80e8d commit 1b51d94
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ feat(lang): add Polish language
### Install pygitver
Run in the `git` root folder of the target repository on localhost.
```shell
docker run --rm -v $(pwd):/app -w /app --entrypoint '' panpuchkov/pygitver /pygitver/scripts/install.sh
docker run --rm -v $(pwd):/app -w /app --user "$(id -u):$(id -g)" --entrypoint '' panpuchkov/pygitver /pygitver/scripts/install.sh
```

* It doesn't matter what the current branch is.
Expand Down Expand Up @@ -149,9 +149,9 @@ tox

##### A single file of the test run
```shell
tox -e coverage -- ./tests/test_git.py -vv
tox -e coverage -- ./tests/test_git.py -vv
```
or
```shell
coverage run -m pytest -- ./tests/test_git.py
coverage run -m pytest -- ./tests/test_git.py
```

0 comments on commit 1b51d94

Please sign in to comment.