From 98f3e5ab679174d155fa4dd58f3120fc48b314ad Mon Sep 17 00:00:00 2001 From: Adrian Coveney <4836233+tofu-rocketry@users.noreply.github.com> Date: Thu, 12 Sep 2024 15:32:26 +0100 Subject: [PATCH] Remove Travis (#369) * Remove Travis CI file as no longer required - No more Python 2 builds for SSM so can just use the Python 3 GitHub Actions. * Remove Travis build status from README. --- .travis.yml | 28 ---------------------------- README.md | 1 - 2 files changed, 29 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 40af6510..00000000 --- a/.travis.yml +++ /dev/null @@ -1,28 +0,0 @@ -os: linux -language: python -python: - - "2.7" - -# Cache the dependencies installed by pip -cache: pip -# Avoid pip log from affecting cache -before_cache: rm -fv ~/.cache/pip/log/debug.log - -install: - # Base requirements for ssm - - pip install -r requirements.txt - # Additional requirements for the unit and coverage tests - - pip install -r requirements-test.txt - -# Commands to prepare environment for the test -before_script: - - export TMPDIR=$PWD/tmp - - mkdir $TMPDIR - - export PYTHONPATH=$PYTHONPATH:`pwd -P` - - cd test - -script: coverage run --branch --source=ssm,bin -m unittest discover --buffer - -after_success: - - coveralls - - codecov diff --git a/README.md b/README.md index a18c1655..0764fd0e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ # Secure STOMP Messenger -[![Build Status](https://travis-ci.org/apel/ssm.svg?branch=dev)](https://travis-ci.org/apel/ssm) [![Coverage Status](https://coveralls.io/repos/github/apel/ssm/badge.svg?branch=dev)](https://coveralls.io/github/apel/ssm?branch=dev) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/9d2b1c88ab844f0081e5fafab49b269d)](https://www.codacy.com/gh/apel/ssm/dashboard) [![Maintainability](https://api.codeclimate.com/v1/badges/34aa04f3583afce2ceb2/maintainability)](https://codeclimate.com/github/apel/ssm/maintainability)