Skip to content

Merge pull request #85 from AlexandreSenpai/dev #67

Merge pull request #85 from AlexandreSenpai/dev

Merge pull request #85 from AlexandreSenpai/dev #67

Workflow file for this run

name: Unit and E2E Testing
on:
push:
branches:
- "dev"
- "master"
pull_request:
branches:
- "dev"
- "master"
jobs:
testing:
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 expiringdict pytest pytest-cov; fi
- name: Starting Testing Suites
run: |
ENMA_CACHING_STATE=disabled \
pytest --cov=. --cov-report=xml ./tests
- name: Upload Report to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: pytest