From 8e4a1a5c463c5ee71a948493eae7f602095ed2c0 Mon Sep 17 00:00:00 2001
From: Tom Teichler <tom.teichler@teckids.org>
Date: Sat, 23 Jan 2021 13:05:12 +0100
Subject: [PATCH] Fix tox.ini

---
 tox.ini | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/tox.ini b/tox.ini
index e1283a1..404ed02 100644
--- a/tox.ini
+++ b/tox.ini
@@ -13,7 +13,7 @@ commands_pre =
      poetry run aleksis-admin yarn install
      poetry run aleksis-admin collectstatic --no-input
 commands =
-    poetry run pytest --cov=. {posargs} aleksis/
+    poetry run pytest --cov=. {posargs} ticdesk/
 
 [testenv:selenium]
 setenv =
@@ -24,9 +24,9 @@ setenv =
 
 [testenv:lint]
 commands =
-    poetry run black --check --diff aleksis/
-    poetry run isort -c --diff --stdout aleksis/
-    poetry run flake8 {posargs} aleksis/
+    poetry run black --check --diff ticdesk/
+    poetry run isort -c --diff --stdout ticdesk/
+    poetry run flake8 {posargs} ticdesk/
 
 [testenv:security]
 commands =
@@ -42,8 +42,8 @@ commands = poetry run make -C docs/ html {posargs}
 
 [testenv:reformat]
 commands =
-    poetry run isort aleksis/
-    poetry run black aleksis/
+    poetry run isort ticdesk/
+    poetry run black ticdesk/
 
 [flake8]
 max_line_length = 100
@@ -54,7 +54,7 @@ ignore = BLK100,E203,E231,W503,D100,D101,D102,D103,D104,D105,D106,D107,RST215,RS
 profile = black
 line_length = 100
 default_section = THIRDPARTY
-known_first_party = aleksis
+known_first_party = ticdesk
 known_django = django
 skip = migrations
 sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
-- 
GitLab