From 03df025cb1530870ce42611de95ab4f2de761f19 Mon Sep 17 00:00:00 2001 From: Adrian Coveney Date: Wed, 11 Sep 2024 14:59:34 +0100 Subject: [PATCH] Remove Travis CI file as no longer required No more Python 2 builds for SSM so can just use the Python 3 GitHub Actions. --- .travis.yml | 28 ---------------------------- 1 file changed, 28 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