Merge pull request #85 from AlexandreSenpai/dev #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |