Skip to content
Snippets Groups Projects
Select Git revision
  • 584172ca760be48dcdb2cc2117d950e5d17f08ed
  • master default protected
  • spahan-merge
  • spahan
  • v1.8-rc1
  • v1.7
  • v1.6.3
  • v1.6.2
  • v1.6.1
  • v1.6
  • v1.5.1
  • v1.5
  • v1.4a
  • v1.3
  • v1.2
  • v1.1
  • v1.0
17 results

.gitlab-ci.yml

Blame
  • .gitlab-ci.yml 1.46 KiB
    # Dear maintainers of the pypy image...
    before_script:
      - test -f /usr/local/bin/pypy && ln -s pypy /usr/local/bin/python
      - test -f /usr/local/bin/pypy3 && ln -s pypy3 /usr/local/bin/python
    
    test:2.7:
      image: python:2.7-alpine
      type: test
      script:
        - pip install pytest-cov
        - python setup.py install
        - python setup.py test
        - py.test --cov=chkcrontab_lib tests
    
    test:3.3:
      image: python:3.3-alpine
      type: test
      script:
        - pip install pytest-cov
        - python setup.py install
        - python setup.py test
        - py.test --cov=chkcrontab_lib tests
    
    test:3.4:
      image: python:3.4-alpine
      type: test
      script:
        - pip install pytest-cov
        - python setup.py install
        - python setup.py test
        - py.test --cov=chkcrontab_lib tests
    
    test:3.5:
      image: python:3.5-alpine
      type: test
      script:
        - pip install pytest-cov
        - python setup.py install
        - python setup.py test
        - py.test --cov=chkcrontab_lib tests
    
    test:3.6:
      image: python:3.6-alpine
      type: test
      script:
        - pip install pytest-cov
        - python setup.py install
        - python setup.py test
        - py.test --cov=chkcrontab_lib tests
    
    test:pypy-2:
      image: pypy:2-slim
      type: test
      script:
        - pip install pytest-cov
        - python setup.py install
        - python setup.py test
        - py.test --cov=chkcrontab_lib tests
    
    # TODO(lyda): Fix test coverage here.
    test:pypy-3:
      image: pypy:3-slim
      type: test
      script:
        - pip install pytest-cov
        - python setup.py install
        - python setup.py test