chore: remove circleci for now

master
Vishnunarayan K I 2019-07-17 20:16:19 +05:30
parent d0cc097fb5
commit c71983b766
1 changed files with 36 additions and 36 deletions

View File

@ -1,42 +1,42 @@
pip-run: &pip-install # pip-run: &pip-install
name: Install Python dependencies # name: Install Python dependencies
command: | # command: |
python3 -m venv venv # python3 -m venv venv
. venv/bin/activate # . venv/bin/activate
pip install pytest # pip install pytest
pip install -e .[cloudflare] # pip install -e .[cloudflare]
version: 2 # version: 2
jobs: # jobs:
nineanime: # nineanime:
docker: # docker:
- image: circleci/python:3.6 # - image: circleci/python:3.6
steps: # steps:
- checkout # - checkout
- run: *pip-install # - run: *pip-install
- run: venv/bin/python -m pytest tests/test_anime.py --anime-site nineanime # - run: venv/bin/python -m pytest tests/test_anime.py --anime-site nineanime
kissanime: # kissanime:
docker: # docker:
- image: circleci/python:3.6 # - image: circleci/python:3.6
steps: # steps:
- checkout # - checkout
- run: *pip-install # - run: *pip-install
- run: venv/bin/python -m pytest tests/test_anime.py --anime-site kissanime # - run: venv/bin/python -m pytest tests/test_anime.py --anime-site kissanime
gogoanime: # gogoanime:
docker: # docker:
- image: circleci/python:3.6 # - image: circleci/python:3.6
steps: # steps:
- checkout # - checkout
- run: *pip-install # - run: *pip-install
- run: venv/bin/python -m pytest tests/test_anime.py --anime-site gogoanime # - run: venv/bin/python -m pytest tests/test_anime.py --anime-site gogoanime
workflows: # workflows:
version: 2 # version: 2
commit: # commit:
jobs: # jobs:
- nineanime # - nineanime
- gogoanime # - gogoanime
# Kissanime will always fail on remote servers due to cloudflare # Kissanime will always fail on remote servers due to cloudflare
# - kissanime # - kissanime