Skip to content
Snippets Groups Projects
.gitlab-ci.yml 215 B
Newer Older
Bruce Cowan's avatar
Bruce Cowan committed
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