Skip to content

Automated testing #1353

Automated testing

Automated testing #1353

Workflow file for this run

name: Automated testing
on:
push:
pull_request:
branches: [ master ]
schedule:
- cron: "0 11 * * *"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python}}
- name: Install requirements
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -U pytest
pip install pytest-cov
pip install coveralls
- name: Run tests
run: pytest tests.py
env:
DUOLINGO_USER: ${{ secrets.DUOLINGO_USER_1 }}
DUOLINGO_PASSWORD: ${{ secrets.DUOLINGO_PASS_1 }}
- name: Coveralls
uses: AndreMiras/coveralls-python-action@develop
with:
parallel: true
flag-name: Unit Test
coveralls_finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: AndreMiras/coveralls-python-action@develop
with:
parallel-finished: true