housekeeping
parent
18224b1ea7
commit
5f877c7d68
|
@ -6,3 +6,4 @@ __pycache__
|
||||||
.pre-commit-config.yaml
|
.pre-commit-config.yaml
|
||||||
.vscode
|
.vscode
|
||||||
.coverage
|
.coverage
|
||||||
|
.hypothesis
|
||||||
|
|
|
@ -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
|
||||||
|
|
8
justfile
8
justfile
|
@ -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
|
||||||
|
|
|
@ -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]
|
||||||
|
|
Loading…
Reference in New Issue