Skip to content

tests: added nhentai doujin get testing #2

tests: added nhentai doujin get testing

tests: added nhentai doujin get testing #2

Workflow file for this run

name: Development Pypi
on:
push:
branches:
- "dev"
- "master"
pull_request:
branches:
- "dev"
- "master"
jobs:
pypi:
name: Code Testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@master
with:
python-version: 3.9
- name: Preparing the environment
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; else python -m pip install beautifulsoup4 requests pydantic; fi
- name: Starting Testing Suites
run: |
python -m pytest ./tests