Commit 718cc234 authored by Mark Canterbury's avatar Mark Canterbury
Browse files

Adding dummy .gitlab-ci.yml file

parent a145b9c8
Loading
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+7 −0
Original line number Diff line number Diff line
stages:          # List of stages for jobs, and their order of execution
  - test

pytest-job:   # This job runs in the test stage.
  stage: test    # It only starts when the job in the build stage completes successfully.
  script:
    - echo "Not doing anything just yet"
 No newline at end of file