From 1a032dd1c1329320ed8db3b2c6e0339e82891263 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@ericsson.com>
Date: Fri, 5 Apr 2024 10:55:03 +0200
Subject: [PATCH] travis is out

---
 .travis.yml | 173 ----------------------------------------------------
 1 file changed, 173 deletions(-)
 delete mode 100644 .travis.yml

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 8277922..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,173 +0,0 @@
-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
-        - 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 -u $PYPI_USER -p $PYPI_PWD *.whl
-      after_script:
-        - echo "Done"
-    - stage: deploy
-      python: "3.8"
-      arch: "arm64"
-      before_script:
-        - sudo apt-get update
-        - sudo 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_aarch64 *.whl
-        - cd wheelhouse
-        - twine upload -u $PYPI_USER -p $PYPI_PWD *.whl
-      after_script:
-        - echo "Done"
-    - stage: deploy
-      python: "3.9"
-      before_script:
-        - sudo apt-get update
-        - sudo 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 -u $PYPI_USER -p $PYPI_PWD *.whl
-      after_script:
-        - echo "Done"
-    - stage: deploy
-      python: "3.7"
-      before_script:
-        - sudo apt-get update
-        - sudo 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 -u $PYPI_USER -p $PYPI_PWD *.whl
-      after_script:
-        - echo "Done"
-    - stage: deploy
-      python: "3.6"
-      before_script:
-        - sudo apt-get update
-        - sudo apt-get install -y patchelf
-        - pip install wheel auditwheel twine doctor-wheel cython
-      script:
-        - python setup.py bdist_wheel sdist
-        - cd dist
-        - doctor-wheel *.whl
-        - auditwheel repair --plat manylinux2014_x86_64 *.whl
-        - cd wheelhouse
-        - twine upload -u $PYPI_USER -p $PYPI_PWD *.whl ../*.gz
-      after_script:
-        - echo "Done"
-    - stage: deploy
-      python: "3.5"
-      before_script:
-        - sudo apt-get update
-        - sudo 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 -u $PYPI_USER -p $PYPI_PWD *.whl
-      after_script:
-        - echo "Done"
-    - stage: deploy
-      python: "pypy3.5"
-      before_script:
-        - sudo apt-get update
-        - sudo apt-get install -y patchelf
-        - pypy3 -m pip install -U wheel auditwheel twine doctor-wheel cython
-      script:
-        - pypy3 setup.py bdist_wheel
-        - cd dist
-        - doctor-wheel *.whl
-        - auditwheel repair --plat manylinux2014_x86_64 *.whl
-        - cd wheelhouse
-        - twine upload -u $PYPI_USER -p $PYPI_PWD *.whl
-      after_script:
-        - echo "Done"
-
-
-- 
GitLab