Restore circleci config.yml (#550)

master
Cong 2020-10-24 13:04:14 +11:00 committed by GitHub
parent 7fe3207910
commit 1a62c72b71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 49 deletions

View File

@ -1,49 +1,18 @@
# pip-run: &pip-install jobs:
# name: Install Python dependencies build:
# command: | executor: python/default
# python3 -m venv venv steps:
# . venv/bin/activate - checkout
# pip install pytest - python/install-packages:
# pip install -e .[cloudflare] args: pytest
pkg-manager: pipenv
- run: |
# version: 2 pipenv install --dev
# jobs: pipenv run pytest
# nineanime: orbs:
# docker: python: circleci/python@1.2.0
# - image: circleci/python:3.6 version: 2.1
# steps: workflows:
# - checkout main:
# - run: *pip-install jobs:
# - run: venv/bin/python -m pytest tests/test_anime.py --anime-site nineanime - build
# 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
# Kissanime will always fail on remote servers due to cloudflare
# - kissanime
# triggers:
# - schedule:
# cron: "0 0 * * *"
# filters:
# branches:
# only:
# - master