Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
software-project-WS25
Github Team
Commits
aaf87d19
Commit
aaf87d19
authored
Nov 04, 2025
by
Somoji Rao
Browse files
Update .gitlab-ci.yml, __init__.py
parent
7bd1d78b
Pipeline
#12055
failed
Changes
2
Pipelines
2
Show whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
aaf87d19
create_file
:
stages
:
-
lint
-
test
-
run
#define Python version to use in all jobs
image
:
python:3.11
before-script
:
-
pip install -r requirements.txt || pip install requests pytest pylint
lint
:
stage
:
lint
script
:
script
:
echo "Building ..."
-
echo "Checking the Code style"
-
pylint *.py --disable=C0114,C0115,C0116
test
:
stage
:
test
script
:
-
echo "Running main data_fetch script"
-
python data_fetch.py
-
echo "Output file generated under ./output/"
-
find output -type f | head -10
artifacts
:
paths
:
-
output/
when
:
always
__init__.py
View file @
aaf87d19
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment