Skip to content

Commit aed5ade

Browse files
committed
Remove mypy from tox, as it would be invoked in normal test runs too
1 parent e21b4de commit aed5ade

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
continue-on-error: ${{ matrix.ignore-typecheck-outcome }}
9393
run: |
9494
source .venv/bin/activate
95-
tox -f "${{ matrix.toxfactor }}-mypy"
95+
mypy pytest_factoryboy
9696
- name: Test with tox
9797
continue-on-error: ${{ matrix.ignore-test-outcome }}
9898
run: |

tox.ini

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
distshare = {homedir}/.tox/distshare
33
envlist = py{3.9,3.10,3.11,3.12,3.13,3.14}-pytest{7.3,7.4,8.0,8.1,8.2,8.3,8.4,latest,main}
44
py{3.9,3.10,3.11}-pytest{7.0,7.1,7.2}
5-
py{3.9,3.10,3.11,3.12,3.13,3.14}-mypy
65

76
[testenv]
87
parallel_show_output = true
@@ -25,11 +24,5 @@ deps =
2524

2625
coverage[toml]
2726

28-
29-
[testenv:py{3.9,3.10,3.11,3.12,3.13,3.14,3.15,3.16,3.17,3.18,3.19}-mypy]
30-
allowlist_externals = poetry
31-
commands_pre = poetry sync --no-root --only=dev
32-
commands = poetry run mypy {posargs:pytest_factoryboy}
33-
3427
[pytest]
3528
addopts = -vv -l

0 commit comments

Comments
 (0)