Skip to content
Snippets Groups Projects
Commit 35ab2bca authored by Ahmet Nihat Simsek's avatar Ahmet Nihat Simsek
Browse files

remove gitlab yml

parent dde643bd
Pipeline #59263 failed with stages
image: python:3.8
stages:
- test
- build
- deploy
before-script:
script:
- python -m pip install --upgrade pip
test:
stage: test
script:
- pip install -r requirements.txt
- pip install coverage
- coverage run -m unittest
- coverage html -d coverage
- coverage xml
artifacts:
paths:
- coverage/
reports:
cobertura: coverage.xml
staging:
stage: build
script:
- echo "Hello, $GITLAB_USER_LOGIN!"
pypi:
stage: deploy
script:
- echo "This job deploys something from the $CI_COMMIT_BRANCH branch."
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