Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Common CI Configuration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
Common CI Configuration
Compare revisions
19b15e2e0ea83de72ce3552a44ca59ab2201de73 to fccc10fc5c8b847d82ca7446c957caa49a7440f6
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
hive/common-ci-configuration
Select target project
No results found
fccc10fc5c8b847d82ca7446c957caa49a7440f6
Select Git revision
Branches
allow-installing-subset-of-poetry-packages
bw_add_error_cause
bw_dockerhub_refs_elimination
develop
kbotor/add-dynamic-tag-job-templates
main
msobczyk/add_user_hived_to_group_users
msobczyk/modify_docker_builder_image
msobczyk/modify_tox_test_runner_image
tm-npm-provenance-enable
tm-remove-tail-npm-pack-package
upgrade-to-ubuntu-23.10
12 results
Swap
Target
hive/common-ci-configuration
Select target project
hive/common-ci-configuration
1 result
19b15e2e0ea83de72ce3552a44ca59ab2201de73
Select Git revision
Branches
allow-installing-subset-of-poetry-packages
bw_add_error_cause
bw_dockerhub_refs_elimination
develop
kbotor/add-dynamic-tag-job-templates
main
msobczyk/add_user_hived_to_group_users
msobczyk/modify_docker_builder_image
msobczyk/modify_tox_test_runner_image
tm-npm-provenance-enable
tm-remove-tail-npm-pack-package
upgrade-to-ubuntu-23.10
12 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Updated Python Image tag to use U24.04 version
· 35efd55e
Bartek Wrona
authored
1 month ago
35efd55e
Updated ruff command spawn to satisfy this tool new version
· fccc10fc
Bartek Wrona
authored
1 month ago
fccc10fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
templates/python_projects.gitlab-ci.yml
+4
-4
4 additions, 4 deletions
templates/python_projects.gitlab-ci.yml
with
4 additions
and
4 deletions
templates/python_projects.gitlab-ci.yml
View file @
fccc10fc
...
...
@@ -10,8 +10,8 @@ variables:
PYTEST_LOG_DURATIONS
:
0
# do not log test durations by default
PYTEST_JUNIT_REPORT
:
"
report.xml"
# junit report location, used by GitLab
# registries:
# uses registry.gitlab.syncad.com/hive/hive/ci-base-image:ubuntu2
2
.04-1
0
PYTHON_IMAGE_TAG
:
"
@sha256:
080b16fd53013aeb9b89b00a8dfc90fecf886173f46448b05f45cee376c43330
"
# uses registry.gitlab.syncad.com/hive/hive/ci-base-image:ubuntu2
4
.04-1
PYTHON_IMAGE_TAG
:
"
@sha256:
813f18c42929193036fc4e0017981c16913766442ef8d146313c64785df29c2e
"
PYTHON_IMAGE
:
"
registry.gitlab.syncad.com/hive/hive/ci-base-image${PYTHON_IMAGE_TAG}"
# colors:
TXT_GREEN
:
"
\e
[1;32m"
...
...
@@ -63,9 +63,9 @@ variables:
script
:
-
if [ -z "${PYPROJECT_CONFIG_PATH}" ]; then MAYBE_EXPLICIT_CONFIG=""; else MAYBE_EXPLICIT_CONFIG="--config ${PYPROJECT_CONFIG_PATH}"; fi
-
echo -e "${TXT_BLUE}Linting all sources with Ruff (check)...${TXT_CLEAR}" &&
ruff ${MAYBE_EXPLICIT_CONFIG} ${PACKAGES_TO_CHECK}
ruff
check
${MAYBE_EXPLICIT_CONFIG} ${PACKAGES_TO_CHECK}
-
echo -e "${TXT_BLUE}Linting all sources with Ruff (diff)...${TXT_CLEAR}" &&
ruff --diff ${MAYBE_EXPLICIT_CONFIG} ${PACKAGES_TO_CHECK}
ruff
check
--diff ${MAYBE_EXPLICIT_CONFIG} ${PACKAGES_TO_CHECK}
.formatting_with_black_check_template
:
extends
:
.project_develop_configuration_template
...
...
This diff is collapsed.
Click to expand it.