housekeeping
parent
18224b1ea7
commit
5f877c7d68
|
@ -6,3 +6,4 @@ __pycache__
|
|||
.pre-commit-config.yaml
|
||||
.vscode
|
||||
.coverage
|
||||
.hypothesis
|
||||
|
|
|
@ -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
|
||||
|
|
8
justfile
8
justfile
|
@ -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
|
||||
|
|
|
@ -38,6 +38,7 @@ path = "roll/__about__.py"
|
|||
[tool.hatch.envs.default]
|
||||
dependencies = [
|
||||
"coverage[toml]>=6.5",
|
||||
"hypothesis",
|
||||
"pytest",
|
||||
]
|
||||
[tool.hatch.envs.default.scripts]
|
||||
|
|
Loading…
Reference in New Issue