Skip to content
Snippets Groups Projects
Commit 479d6aa7 authored by sk2521's avatar sk2521
Browse files

Update .gitlab-ci.yml file

parent d4968b9a
No related branches found
No related tags found
No related merge requests found
build-job: # build-job:
stage: build # stage: build
script: # script:
- python3 -m venv venv # - python3 -m venv venv
- . venv/bin/activate # - . venv/bin/activate
- pip3 install wheel # - pip3 install wheel
- pip3 install -r requirements.txt --no-cache-dir # - pip3 install -r requirements.txt --no-cache-dir
test-job: test-job:
stage: test stage: test
script: script:
- python3 -m venv venv
- . venv/bin/activate
- pip3 install -r requirements.txt --no-cache-dir
- pytest - pytest
# deploy-job: # deploy-job:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment