Skip to content
Snippets Groups Projects
Commit 60a2cb67 authored by Cedric Verstege's avatar Cedric Verstege
Browse files

:alembic::alembic::alembic:

parent 1f923293
Branches
No related tags found
No related merge requests found
Pipeline #4404 failed
stages: stages:
- code_quality - 🕵️
include: include:
# Case 1 Lint # Case 1 Lint
# stages: code_quality stages: 🕵️
- local: ci-configs/case-1-lint/linting_job.yml - local: ci-configs/case-1-lint/lint.yml
# # Case 2 Test # # Case 2 Test
# # stages: code_quality, test stages: 🕵️, ⚗️
# - local: ci-configs/case-2-test/lint.yml - local: ci-configs/case-2-test/lint.yml
# - local: ci-configs/case-2-test/coverage.yml - local: ci-configs/case-2-test/coverage.yml
# - local: ci-configs/case-2-test/unit_test.yml - local: ci-configs/case-2-test/unit_test.yml
# # Case 3 Build # # Case 3 Build
# # stages: code_quality, test, build, build_image # # stages: code_quality, test, build, build_image
......
lint: lint:
stage: test stage: 🕵️
image: python:3.11 image: python:3.11
script: script:
- pip install flake8 black - pip install flake8 black
......
coverage: coverage:
stage: test stage: ⚗️
image: python:3.11 image: python:3.11
script: script:
- pip install pytest pytest-cov - pip install pytest pytest-cov
......
lint: lint:
stage: code_quality stage: 🕵️
image: python:3.11 image: python:3.11
script: script:
- pip install flake8 black - pip install flake8 black
......
unit_test: unit_test:
stage: test stage: ⚗️
image: python:3.11 image: python:3.11
script: script:
- pip install -r ./case-2-test/requirements.txt - pip install -r ./case-2-test/requirements.txt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment