diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..d829eaa --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +image: "python:3.7" + +before_script: + - python --version + - pip install -r requirements.txt + +stages: + - test + +test: + stage: test + script: + - pytest tests \ No newline at end of file