housekeeping

main
mat ess 2023-08-13 16:46:26 -04:00
parent 18224b1ea7
commit 5f877c7d68
4 changed files with 7 additions and 6 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@ __pycache__
.pre-commit-config.yaml
.vscode
.coverage
.hypothesis

View File

@ -27,6 +27,5 @@ total | 1
## todo
- [x] roll with (dis)advantage
- [ ] interactive rolling mode
- [x] print criticals
- [ ] use property testing
- [x] use property testing

View File

@ -23,8 +23,8 @@ env:
clean:
hatch clean
hatch env purge
rm -r .{mypy,pytest,ruff}_cache
rm -r dist
rm .coverage
hatch env prune
-rm -r .{mypy,pytest,ruff}_cache
-rm -r dist
-rm .coverage
fd __pycache__ --no-ignore --exec rm -r

View File

@ -38,6 +38,7 @@ path = "roll/__about__.py"
[tool.hatch.envs.default]
dependencies = [
"coverage[toml]>=6.5",
"hypothesis",
"pytest",
]
[tool.hatch.envs.default.scripts]