diff --git a/tox.ini b/tox.ini
index e1283a1b72150383c5c2c9b7fbf43abb6cdf6ea2..404ed0257ed070de1b8118d287bcb197be031120 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