Skip to content

Commit

Permalink
more more more
Browse files Browse the repository at this point in the history
  • Loading branch information
willingc committed Nov 17, 2023
1 parent bae4f6e commit db13d32
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: pip install hatch

- name: "Run tests for ${{ matrix.python-version }}"
run: hatch run test:no-cov
run: hatch run test

docs:
name: Documentation
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ include = [
"/papermill",
]

[[tool.hatch.envs.test.matrix]]
[[tool.hatch.envs.default.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]

[tool.hatch.envs.test]
[tool.hatch.envs.default]
dependencies = [
"attrs>=17.4.0",
"azure-datalake-store >= 0.0.30",
Expand Down Expand Up @@ -105,9 +105,10 @@ dependencies = [
"wheel>=0.31.0",
]

[tool.hatch.envs.test.scripts]
[tool.hatch.envs.default.scripts]
cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=hatch_init --cov=tests papermill/tests"
no-cov = "cov --no-cov"
test = "pytest papermill/tests"

[tool.hatch.envs.docs]
dependencies = [
Expand Down

0 comments on commit db13d32

Please sign in to comment.