From c71983b766501a6b9481c8aaa9e83bfabeb9ea40 Mon Sep 17 00:00:00 2001 From: Vishnunarayan K I Date: Wed, 17 Jul 2019 20:16:19 +0530 Subject: [PATCH] chore: remove circleci for now --- .circleci/config.yml | 72 ++++++++++++++++++++++---------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b8c3fea..a232626 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,42 +1,42 @@ -pip-run: &pip-install - name: Install Python dependencies - command: | - python3 -m venv venv - . venv/bin/activate - pip install pytest - pip install -e .[cloudflare] +# pip-run: &pip-install +# name: Install Python dependencies +# command: | +# python3 -m venv venv +# . venv/bin/activate +# pip install pytest +# pip install -e .[cloudflare] -version: 2 -jobs: - nineanime: - docker: - - image: circleci/python:3.6 - steps: - - checkout - - run: *pip-install - - run: venv/bin/python -m pytest tests/test_anime.py --anime-site nineanime - kissanime: - docker: - - image: circleci/python:3.6 - steps: - - checkout - - run: *pip-install - - run: venv/bin/python -m pytest tests/test_anime.py --anime-site kissanime - gogoanime: - docker: - - image: circleci/python:3.6 - steps: - - checkout - - run: *pip-install - - run: venv/bin/python -m pytest tests/test_anime.py --anime-site gogoanime +# version: 2 +# jobs: +# nineanime: +# docker: +# - image: circleci/python:3.6 +# steps: +# - checkout +# - run: *pip-install +# - run: venv/bin/python -m pytest tests/test_anime.py --anime-site nineanime +# kissanime: +# docker: +# - image: circleci/python:3.6 +# steps: +# - checkout +# - run: *pip-install +# - run: venv/bin/python -m pytest tests/test_anime.py --anime-site kissanime +# gogoanime: +# docker: +# - image: circleci/python:3.6 +# steps: +# - checkout +# - run: *pip-install +# - run: venv/bin/python -m pytest tests/test_anime.py --anime-site gogoanime -workflows: - version: 2 - commit: - jobs: - - nineanime - - gogoanime +# workflows: +# version: 2 +# commit: +# jobs: +# - nineanime +# - gogoanime # Kissanime will always fail on remote servers due to cloudflare # - kissanime