Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.gitlab-ci.yml 412 B
image: artefact.skatelescope.org/ska-tango-images/tango-itango:9.3.3.7
variables:
  PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
cache:
  paths:
    - .cache/pip
    - .tox
#before_script:
#  - pip install tox
stages:
  - linting
  - unit-tests
linting:
  stage: linting
  allow_failure: true
  script:
    - cd devices
    - tox -e pep8
unit_test:
  stage: unit-tests
  script:
    - cd devices
    - tox -e py37