diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..93d249b --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +stages: + - test + +test: + stage: test + script: + - apt-get update -qy + - apt-get install -y python3-dev python3-pip + - pip install -r requirements.txt + - pytest tests --cov --cov-report term --cov-report html \ No newline at end of file