diff --git a/templates/python/code_quality/black/black.yml b/templates/python/code_quality/black/black.yml index 17d299ce54057ad4ef7140d2c2c38347bf27e59d..2d4593595c43a9a25dd727ade0554585f58a68c2 100644 --- a/templates/python/code_quality/black/black.yml +++ b/templates/python/code_quality/black/black.yml @@ -10,8 +10,3 @@ black: script: - !reference [.python_install, script] - black ${PROJECT_PATH} --check --diff --quiet - only: - changes: - - ${PROJECT_PATH}/**/*.py - - .gitlab-ci.yml - - ${PROJECT_PATH}/pyproject.toml diff --git a/templates/python/code_quality/flake8/flake8.yml b/templates/python/code_quality/flake8/flake8.yml index a5dcf4a077c24fb0bba07bff5c67e8e79e294941..76e41001757b44bae210dafa8325dd2f45341a09 100644 --- a/templates/python/code_quality/flake8/flake8.yml +++ b/templates/python/code_quality/flake8/flake8.yml @@ -10,9 +10,3 @@ flake8: script: - !reference [.python_install, script] - flake8 ${PROJECT_PATH} -v - only: - changes: - - ${PROJECT_PATH}/**/*.py - - .gitlab-ci.yml - - ${PROJECT_PATH}/pyproject.toml - - ${PROJECT_PATH}/.flake8 diff --git a/templates/python/code_quality/isort/isort.yml b/templates/python/code_quality/isort/isort.yml index a3ec7755bedbcd0d970305b8ade5ab06f5c08b45..9f46fd3dbc24acb6ae4576c9b9b4ffaf52f7544c 100644 --- a/templates/python/code_quality/isort/isort.yml +++ b/templates/python/code_quality/isort/isort.yml @@ -10,8 +10,3 @@ isort: script: - !reference [.python_install, script] - isort . --check-only --verbose - only: - changes: - - ${PROJECT_PATH}/**/*.py - - .gitlab-ci.yml - - ${PROJECT_PATH}/pyproject.toml diff --git a/templates/python/code_quality/mypy/mypy.yml b/templates/python/code_quality/mypy/mypy.yml index ccfd700c00361835fd0747c7ba7406311ea8040a..8249e872eb2811afd9887d69d362bf671e3ee488 100644 --- a/templates/python/code_quality/mypy/mypy.yml +++ b/templates/python/code_quality/mypy/mypy.yml @@ -10,13 +10,6 @@ mypy: script: - !reference [.python_install, script] - mypy ${PROJECT_PATH} - only: - changes: - - ${PROJECT_PATH}/**/*.py - - .gitlab-ci.yml - - ${PROJECT_PATH}/pyproject.toml - - ${PROJECT_PATH}/mypy.ini - - ${PROJECT_PATH}/.mypy.ini - - ${PROJECT_PATH}/setup.cfg + diff --git a/templates/python/code_quality/ruff/ruff.yml b/templates/python/code_quality/ruff/ruff.yml index 5856ace80892f9882cbb6b26acd0410d988790b4..daabfc706174f852c29849e6e11aa63efde28f6b 100644 --- a/templates/python/code_quality/ruff/ruff.yml +++ b/templates/python/code_quality/ruff/ruff.yml @@ -10,10 +10,3 @@ ruff: script: - !reference [.python_install, script] - ruff check ${PROJECT_PATH} - only: - changes: - - ${PROJECT_PATH}/**/*.py - - .gitlab-ci.yml - - ${PROJECT_PATH}/pyproject.toml - - ${PROJECT_PATH}/.ruff.toml - - ${PROJECT_PATH}/ruff.toml diff --git a/templates/python/testing/pytest/pytest.yml b/templates/python/testing/pytest/pytest.yml index c42f295ebd1c3101c46984aac047f5e25b9bbac8..750241878e41bc7705d37a76db95e9d6c65c18ad 100644 --- a/templates/python/testing/pytest/pytest.yml +++ b/templates/python/testing/pytest/pytest.yml @@ -10,9 +10,3 @@ pytest: script: - !reference [.python_install, script] - ${PYTEST_RUN_CMD} - only: - changes: - - ${PROJECT_PATH}/**/*.py - - .gitlab-ci.yml - - ${PROJECT_PATH}/pyproject.toml - - ${PROJECT_PATH}/pytest.ini