Skip to content

Commit c2a62cf

Browse files
committedFeb 25, 2025·
Update pytest directory
1 parent d89129f commit c2a62cf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎.github/workflows/test_suite.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
pip install .[test]
3434
- name: Test with pytest
3535
run: |
36-
coverage run -m pytest -v -s
36+
coverage run -m pytest -v -s test/
3737
- name: Generate Coverage Report
3838
run: |
3939
coverage report -m

‎pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ classifiers = [
3737
[project.optional-dependencies]
3838
dev = ["pre-commit","black","ruff"]
3939
test = ["pytest", "coverage", "codecov"]
40-
docs = ["sphinx-rtd-theme"]
40+
docs = ["sphinx", "sphinx-rtd-theme"]
4141
icecube = [
4242
"ic3_labels @ git+ssh://git@github.com/icecube/ic3-labels",
4343
"ic3_data @ git+ssh://git@github.com/icecube/ic3-data",
@@ -61,7 +61,7 @@ line-length = 79
6161
# technically, black does not support python2.
6262
# This is all python versions black knows of and gets
6363
# rid of the trailing comma bug
64-
target-version = ["py33", "py34", "py35", "py36", "py37", "py38", "py39", "py310", "py311"]
64+
target-version = ["py38", "py39", "py310", "py311", "py312"]
6565

6666
[tool.ruff]
6767
# select = ["ALL"]

0 commit comments

Comments
 (0)
Please sign in to comment.