Revision d257ee262ccbe3fc0fc4a332a3005464db8c49a6 authored by Lorenzo Pattelli on 05 June 2020, 10:57:07 UTC, committed by Lorenzo Pattelli on 09 June 2020, 10:19:36 UTC
otherwise, it is possible that the search is halted prematurely if the
first value already falls within the desired tolerance
1 parent 0ae7270
Raw File
.gitlab-ci.yml
image: python:3.7

stages:
  - test
  - deploy

test:
  stage: test
  script:
    - echo "Testing"
    - apt-get update
    - apt-get install -y gfortran
    - pip3 install .
    - pip3 install nose2
    - nose2 -v

production:
  stage: deploy
  script:
    - echo "Production"
  only:
    - tags
back to top