-
Piotr Maślanka authored19b231ee
.travis.yml 3.18 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
- DEBUG=1 python setup.py install
after_script:
- coverage xml
- coverage report
- ./cc-test-reporter after-build -t coverage.py --exit-code ${TRAVIS_TEST_RESULT}
jobs:
include:
- stage: test
python: "3.8"
script:
- pytest --cov=./ --cov-report=xml
- stage: test
python: "3.5"
script:
- pytest --cov=./ --cov-report=xml
- stage: test
python: "3.6"
script:
- pytest --cov=./ --cov-report=xml
- stage: test
python: "3.7"
script:
- pytest --cov=./ --cov-report=xml
- stage: test
python: "3.9"
script:
- pytest --cov=./ --cov-report=xml
- stage: deploy
python: "3.8"
before_script:
- apt-get update
- apt-get install -y patchelf
- pip install wheel auditwheel twine doctor-wheel cython
script:
- python setup.py bdist_wheel
- cd dist
- doctor-wheel *.whl
- auditwheel repair --plat manylinux2014_x86_64 *.whl
- cd wheelhouse
- twine upload *.whl
after_script:
- echo "Done"
- stage: deploy
python: "3.9"
before_script:
- apt-get update
- apt-get install -y patchelf
- pip install wheel auditwheel twine doctor-wheel cython
script:
- python setup.py bdist_wheel
- cd dist
- doctor-wheel *.whl
- auditwheel repair --plat manylinux2014_x86_64 *.whl
- cd wheelhouse
- twine upload *.whl
after_script:
- echo "Done"
- stage: deploy