Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2023-01-07 18:47:53 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-01-07 18:47:53 +0300
commitbc6cb276b8097b833bb867f5045190f4230ffebc (patch)
treed2d938136825750dfdb20425b94d55ce67d61da7 /pyproject.toml
parent8efaf615cf2783d2ef949cf3e11c6e0c9fbee155 (diff)
refactor: Restructure unittests
- Separate GUI tests from common tests - Rename folders
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml7
1 files changed, 3 insertions, 4 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 9fe80dd1b..ce449fe03 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
[tool.codespell]
-skip = "*__pycache__*,test,*.egg-info,.git,*.po,*.nsi,*.spec"
+skip = "*__pycache__*,build,test,*.egg-info,.git,*.po,*.nsi,*.spec"
ignore-words-list = "claus,pres,ser,trough"
@@ -149,7 +149,6 @@ exclude = [
"venv",
"*.pyi",
# Code Folders
- "gajim/gui",
"typings",
"gajim/common/config.py", # legacy module, will be removed
"gajim/common/optparser.py", # legacy module, will be removed
@@ -162,8 +161,8 @@ target-version = "py310"
[tool.ruff.per-file-ignores]
"test/*" = ["E402"]
-"test/no_gui/test_styling.py" = ["RUF001", "E501"]
-"test/no_gui/test_regex.py" = ["RUF001"]
+"test/common/test_styling.py" = ["RUF001", "E501"]
+"test/common/test_regex.py" = ["RUF001"]
[tool.ruff.mccabe]