Commit e0205181 authored by Yamada Hiroyuki's avatar Yamada Hiroyuki
Browse files

Fix: Ensure Installation on test

parent a21b9acc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,6 @@ build-backend = "setuptools.build_meta"


[tool.hatch.envs.test]
dev-mode = false
dependencies = [
    "coverage[toml]",
    "cython",
@@ -19,6 +18,7 @@ dependencies = [
DEBUG_CPPRB = "1"

[tool.hatch.envs.test.scripts]
install = "pip install -e ."
run = "python -m unittest discover test"
run-cov = "coverage run -m unittest discover test"

+5 −0
Original line number Diff line number Diff line
@@ -3,8 +3,13 @@
set -eux

hatch run cov:erase

hatch run test:install
hatch run test-38:install

hatch run test:run-cov
hatch run test-38:run-cov

hatch run cov:combine
hatch run cov:report