Skip to content

Commit 847004b

Browse files
nejchJohnVillalovos
authored andcommitted
test(meta): move meta suite into unit tests
They're always run with it anyway, so it makes no difference.
1 parent 7a8a862 commit 847004b

File tree

6 files changed

+2
-3
lines changed

6 files changed

+2
-3
lines changed

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ ignore_errors = true
2121
module = [
2222
"tests.functional.*",
2323
"tests.functional.api.*",
24-
"tests.meta.*",
2524
"tests.smoke.*",
2625
]
2726
disable_error_code = ["no-untyped-def"]
File renamed without changes.
File renamed without changes.

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ isolated_build = True
2424
deps = -r{toxinidir}/requirements.txt
2525
-r{toxinidir}/requirements-test.txt
2626
commands =
27-
pytest tests/unit tests/meta {posargs}
27+
pytest tests/unit {posargs}
2828

2929
[testenv:black]
3030
basepython = python3
@@ -91,7 +91,7 @@ commands = sphinx-build -n -W --keep-going -b html docs build/sphinx/html
9191
[testenv:cover]
9292
commands =
9393
pytest --cov --cov-report term --cov-report html \
94-
--cov-report xml tests/unit tests/meta {posargs}
94+
--cov-report xml tests/unit {posargs}
9595

9696
[coverage:run]
9797
omit = *tests*

0 commit comments

Comments
 (0)