diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..52d415000b112933dab3831c54e19549b9945dcd --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +image: python:latest +stages: + - test + +before_script: + - python -V + +check: + stage: test + script: + - pip install flake8 + - flake8 karma.py + +test: + stage: test + script: + - pip install errbot pytest + - pytest