From 67794665316ac59a75d4417b642ebc1abb35e519 Mon Sep 17 00:00:00 2001 From: Paul Zehner Date: Fri, 23 Feb 2024 00:01:08 +0100 Subject: [PATCH] Remove Travis config --- .travis.yml | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 16182a9..0000000 --- a/.travis.yml +++ /dev/null @@ -1,43 +0,0 @@ -language: python -python: - - "3.8" - - "3.9" - - "3.10" - - "3.11" - -# enable cache for Python dependencies -cache: pip - -# restrict to branches -branches: - only: - - master - - develop - -before_install: - # install poetry - - pip install poetry - -# commands to install python dependencies -install: - # install dependencies for test - - poetry install --no-ansi - -# commands to run tests -script: - # run tests - - poetry run pytest --cov-report term - - # run static analysis - - if [[ $TRAVIS_PYTHON_VERSION != 3.6 ]]; then poetry run mypy .; fi - - # run code formatting tests - - poetry run black . --check - - poetry run flake8 - - poetry run isort . --check - -# commands to manage tests results -after_script: - # upload coverage stats to codecov.io - # codecov token is stored in travis settings - - poetry run codecov -X gcov