From ca4042cb5219ccd36263db506c7756e6473e1b8e Mon Sep 17 00:00:00 2001 From: SkandaBT <9980056379Skanda@gmail.com> Date: Thu, 8 Aug 2024 19:58:19 +0530 Subject: [PATCH] Delete .github/workflows/.travis.yml Signed-off-by: SkandaBT <9980056379Skanda@gmail.com> --- .github/workflows/.travis.yml | 45 ----------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 .github/workflows/.travis.yml diff --git a/.github/workflows/.travis.yml b/.github/workflows/.travis.yml deleted file mode 100644 index b0589cd88..000000000 --- a/.github/workflows/.travis.yml +++ /dev/null @@ -1,45 +0,0 @@ -language: python - -python: - - "3.10" - -# Only run on push and pull request events -branches: - only: - - main - -# Environment variables -env: - global: - - CODECOV_TOKEN=feeefeld-baad-4dba-a89a-6c5861823c5e - -# Install dependencies -install: - - pip install -r requirements.txt - -# Run linting and tests -script: - - pytest --cov app - -# After success -after_success: - - codecov - -# Node.js setup -before_install: - - nvm install 12 - - nvm use 12 - -# Cache dependencies -cache: - directories: - - $HOME/.cache/pip - - $HOME/.npm - -# Notifications -notifications: - email: - recipients: - - 9980056379Skanda@gmail.com - on_success: always - on_failure: always