Skip to content

Commit 6549615

Browse files
committed
chore: remove unused pytest dependency
1 parent ac6269e commit 6549615

4 files changed

Lines changed: 5 additions & 77 deletions

File tree

.github/workflows/build-and-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Run the automated tests
3232
run: |
3333
poetry build
34-
- name: Upload pytest test results
34+
- name: Upload build artifacts
3535
uses: actions/upload-artifact@v7
3636
with:
3737
name: build-${{ matrix.python-version }}
@@ -67,10 +67,10 @@ jobs:
6767
- name: Run the automated tests
6868
run: |
6969
poetry run tox run -e ${{ matrix.python-version }}
70-
- name: Upload pytest test results
70+
- name: Upload coverage results
7171
uses: actions/upload-artifact@v7
7272
with:
73-
name: pytest-results-${{ matrix.python-version }}
73+
name: coverage-results-${{ matrix.python-version }}
7474
path: coverage.xml
7575

7676
coverage-badge:
@@ -86,7 +86,7 @@ jobs:
8686
- name: Download coverage artifact
8787
uses: actions/download-artifact@v8
8888
with:
89-
name: pytest-results-3.14
89+
name: coverage-results-3.14
9090
- name: Run coverage badge
9191
run: |
9292
sudo apt-get install xq

poetry.lock

Lines changed: 1 addition & 71 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ packages = [
4343

4444
[tool.poetry.group.dev.dependencies]
4545
coverage = "7.15.0"
46-
pytest = "9.1.1"
4746
flake8 = "7.3.0"
4847
deepdiff = "9.1.0"
4948
mypy = "2.1.0"

tox.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ env_list = ["lint", "type", "3.10", "3.11", "3.12", "3.13", "3.14"]
44
[env_run_base]
55
description = "Run unit tests"
66
deps = [
7-
"pytest>=8",
87
"coverage>=7",
98
"deepdiff>=8",
109
]

0 commit comments

Comments
 (0)