export from internal gitlab

This commit is contained in:
2022-07-07 19:36:33 +02:00
parent b1a3cd3919
commit 52ce30dc9a
32 changed files with 5119 additions and 0 deletions

15
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,15 @@
# This file is a template, and might need editing before it works on your project.
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/python/tags/
image: "python:3.9"
#commands to run in the Docker container before starting each job.
before_script:
- pip install -r ./requirements.txt
- pip install -e .
# different stages in the pipeline
stages:
- Test
pytest:
stage: Test
script:
- pytest -v ./tests