Skip to content
Snippets Groups Projects
.travis.yml 5.11 KiB
language: python
stages:
  - name: test
  - name: deploy
    if: tag is present
cache: pip
before_script:
  - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
  - chmod +x ./cc-test-reporter
  - ./cc-test-reporter before-build
  - pip install -r requirements.txt
  - pip install pytest coverage pytest-cov
after_script:
  - coverage xml
  - coverage report
  - ./cc-test-reporter after-build -t coverage.py --exit-code ${TRAVIS_TEST_RESULT}
jobs:
  include:
    - stage: test
      python: "pypy3.5"
      before_script:
        - pypy3 -m pip install -r requirements.txt
        - pypy3 -m pip install pytest
      script:
        - pypy3 setup.py install
        - pytest
      after_script:
        - echo "Do nothing"
    - stage: test
      python: "3.8"
      arch: "arm64"
      before_script:
        - pip install -r requirements.txt
        - pip install pytest coverage pytest-cov
      after_script:
        - coverage xml
        - coverage report
      script:
        - DEBUG=1 python setup.py install
        - pytest --cov=./ --cov-report=xml
    - stage: test
      python: "3.8"
      script:
        - DEBUG=1 python setup.py install
        - pytest --cov=./ --cov-report=xml
    - stage: test
      python: "3.5"
      script:
        - DEBUG=1 python setup.py install
        - pytest --cov=./ --cov-report=xml
    - stage: test
      python: "3.6"
      script:
        - DEBUG=1 python setup.py install
        - pytest --cov=./ --cov-report=xml
    - stage: test
      python: "3.7"
      script:
        - DEBUG=1 python setup.py install
        - pytest --cov=./ --cov-report=xml
    - stage: test
      python: "3.9"
      script:
        - DEBUG=1 python setup.py install
        - pytest --cov=./ --cov-report=xml
    - stage: deploy
      python: "3.8"
      before_script:
        - sudo apt-get update
        - sudo apt-get install -y patchelf