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 .pre-commit-config.yaml
.vscode .vscode
.coverage .coverage
.hypothesis

View File

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

View File

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

View File

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