Skip to content

Commit

Permalink
should fix tests docs
Browse files Browse the repository at this point in the history
  • Loading branch information
agoscinski committed Jul 19, 2024
1 parent 9b1601a commit 3be1c9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion {{cookiecutter.plugin_name}}/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ jobs:
with:
python-version: "3.12"
- name: Build docs
run: hatch run docs:build
run:
cd ${PLUGIN_NAME}
hatch run docs:build

pre-commit:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions {{cookiecutter.plugin_name}}/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ hatch test # Run tests whith your current python version
hatch test --python 3.9 # Run tests for python version 3.9
hatch test --show # See all defined test environment
hatch test --all # Run tests for all test environments
hatch test --coverage # Run tests with coverage
```
You can add arbitrary flags to pytest at the end of the command. For example to run the tests in debug mode use
```
Expand Down

0 comments on commit 3be1c9c

Please sign in to comment.