]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
.gitlab-ci.yml:: updated poe tasks names
authorAleš Mrázek <ales.mrazek@nic.cz>
Fri, 5 Dec 2025 11:39:03 +0000 (12:39 +0100)
committerVladimír Čunát <vladimir.cunat@nic.cz>
Sun, 21 Dec 2025 07:19:27 +0000 (08:19 +0100)
Updated poe tasks names in other places.

.gitlab-ci.yml
doc/dev/manager-dev-env.rst
tests/README.rst

index 8a292065961c4d835a86dc179606f644f7bad629..eae5ab7a173f865fc3c1f67de01ca1687beb0677 100644 (file)
@@ -853,7 +853,7 @@ python:examples:
   <<: *python
   script:
     - poetry install --all-extras --only main,dev
-    - poe examples
+    - poe test-examples
 
 python:migrate:
   <<: *python
@@ -865,19 +865,13 @@ python:check:
   <<: *python
   script:
     - poetry install --all-extras --only main,build,dev,lint
-    - poe check
+    - poe check-files
 
 python:format:
   <<: *python
   script:
     - poetry install --all-extras --only main,dev,lint
-    - poe format
-
-python:lint:
-  <<: *python
-  script:
-    - poetry install --all-extras --only main,dev,lint
-    - poe lint
+    - poe check-code
 
 python:run:
   <<: *python
@@ -912,7 +906,7 @@ python:unit:
           - '3.14'
   script:
     - poetry install --all-extras --only main,dev,test
-    - poe test
+    - poe test-unit
     # the following command makes sure that the source root of the coverage file is at $gitroot
     - poetry run bash -c "coverage combine .coverage; coverage xml"
   artifacts:
index 75992ba52aad1dc3b3d94ba148fe0a222c55e6c5..09ef221744ee90bc74a14fa61de29b7e385633e6 100644 (file)
@@ -106,7 +106,7 @@ If something fails and you have done all the steps above, please [open a new iss
 Contributing
 ============
 
-Before committing, please ensure that ``poe check``, ``poe lint``, ``poe format`` and ``poe test`` pass.
+Before committing, please ensure that ``poe check-files``, ``poe check-code`` and ``poe test-unit`` pass.
 Those commands are both run on the CI and if they don't pass, CI fails.
 
 
index c2239f2fde0062835eeff330ec284ea7db57ac36..bb41091ef10dc9ec4e5070ef694f28ae29e585a1 100644 (file)
@@ -11,7 +11,7 @@ Some can be enabled by meson build system and some can be performed by Poetry to
 The manager unit tests
 ======================
 
-The unit tests use ``pytest`` and can be run with the command ``poe test``.
+The unit tests use ``pytest`` and can be run with the command ``poe test-unit``.
 They can be run from a freshly cloned repository and should be successful.
 They are located in the ``manager`` subdirectory.