-
Notifications
You must be signed in to change notification settings - Fork 130
48 lines (44 loc) · 1.16 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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