Commit aaf87d19 authored by Somoji Rao's avatar Somoji Rao
Browse files

Update .gitlab-ci.yml, __init__.py

parent 7bd1d78b
Pipeline #12055 failed
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
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment